nixos/syncthing: add ignoreDelete folder option

This commit is contained in:
Doron Behar 2020-08-30 10:53:59 +03:00
parent ddb59ca5cc
commit 5789ffc509

View file

@ -18,6 +18,7 @@ let
fsWatcherEnabled = folder.watch;
fsWatcherDelayS = folder.watchDelay;
ignorePerms = folder.ignorePerms;
ignoreDelete = folder.ignoreDelete;
versioning = folder.versioning;
}) (filterAttrs (
_: folder:
@ -284,8 +285,6 @@ in {
});
};
rescanInterval = mkOption {
type = types.int;
default = 3600;
@ -327,6 +326,16 @@ in {
'';
};
ignoreDelete = mkOption {
type = types.bool;
default = false;
description = ''
Whether to delete files in destination. See <link
xlink:href="https://docs.syncthing.net/advanced/folder-ignoredelete.html">
upstream's docs</link>.
'';
};
};
}));
};