Evie Litherland-Smith
ca40907095
extraOptions -> settings devices -> settings.devices folders -> settings.folders
25 lines
526 B
Nix
25 lines
526 B
Nix
{...}: {
|
|
imports = [./default.nix ./devices/ion.nix];
|
|
services.syncthing = {
|
|
user = "elitherl";
|
|
group = "users";
|
|
dataDir = "/home/elitherl";
|
|
settings = {
|
|
options = {
|
|
globalAnnounceEnabled = true;
|
|
localAnnounceEnabled = true;
|
|
};
|
|
folders = {
|
|
Sync = {
|
|
path = "/home/elitherl/Sync";
|
|
label = "UKAEA";
|
|
id = "fwzht-j7hrc";
|
|
devices = ["ion"];
|
|
ignorePerms = true;
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|