syncthing: add yncthing-resolve-conflicts script

This commit is contained in:
sid 2026-03-01 18:17:35 +01:00
parent a37e4720ca
commit 17789ce55d
3 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{
writeShellApplication,
...
}:
let
name = "syncthing-resolve-conflicts";
text = builtins.readFile ./${name}.sh;
in
writeShellApplication {
inherit name text;
meta.mainProgram = name;
}