nixos/services/syncthing/folders/camera.nix

13 lines
296 B
Nix

{lib, ...}: {
imports = [../devices];
services.syncthing.folders."Camera" = {
label = "Camera";
path = lib.mkDefault "/var/lib/syncthing/Camera/";
id = "fp4_4j7w-photos";
type = "receiveonly";
ignorePerms = true;
devices = lib.mkDefault [];
enable = false;
};
}