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