11 lines
244 B
Nix
11 lines
244 B
Nix
_: {
|
|
services.syncthing = {
|
|
enable = true;
|
|
openDefaultPorts = true;
|
|
dataDir = "/home/notoh/sync";
|
|
configDir = "/home/notoh/.config/syncthing";
|
|
guiAddress = "localhost:8384";
|
|
user = "notoh";
|
|
group = "users";
|
|
};
|
|
}
|