20 lines
386 B
Nix
20 lines
386 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [ ./default.nix ./devices/ion.nix ];
|
||
|
services.syncthing = {
|
||
|
user = "elitherl";
|
||
|
group = "users";
|
||
|
dataDir = "/home/elitherl";
|
||
|
folders = {
|
||
|
Sync = {
|
||
|
path = "/home/elitherl/Sync";
|
||
|
label = "UKAEA";
|
||
|
id = "fwzht-j7hrc";
|
||
|
devices = [ "ion" ];
|
||
|
ignorePerms = true;
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|