12 lines
297 B
Nix
12 lines
297 B
Nix
{lib, ...}: {
|
|
imports = [../devices];
|
|
services.syncthing.folders."Archive" = {
|
|
label = "Archive";
|
|
path = lib.mkDefault "/var/lib/syncthing/Archive/";
|
|
id = "hwnqy-xzcdx";
|
|
ignorePerms = true;
|
|
devices = lib.mkDefault ["legion" "monarch" "vanguard"];
|
|
enable = true;
|
|
};
|
|
}
|