13 lines
296 B
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;
|
|
};
|
|
}
|