nixos/services/syncthing/folders/exports.nix

12 lines
297 B
Nix
Raw Normal View History

{lib, ...}: {
imports = [../devices];
services.syncthing.folders."Exports" = {
label = "Exports";
path = lib.mkDefault "/var/lib/syncthing/Exports/";
id = "tof2e-pdtde";
ignorePerms = true;
devices = lib.mkDefault ["legion" "monarch" "vanguard"];
enable = true;
};
}