nixos/services/syncthing/folders/xochitl.nix

13 lines
315 B
Nix

{lib, ...}: {
imports = [../devices];
services.syncthing.folders."Xochitl" = {
label = "Xochitl";
path = lib.mkDefault "/var/lib/syncthing/Xochitl/";
id = "dkcbx-kq7hl";
type = "receiveonly";
ignorePerms = true;
devices = lib.mkDefault ["legion" "remarkable"];
enable = true;
};
}