nixos/services/syncthing/folders/camera.nix

11 lines
237 B
Nix
Raw Normal View History

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