1
0
Fork 0
nixos-config/system/syncthing.nix
2018-05-29 20:09:27 +02:00

13 lines
269 B
Nix

{
boot.kernel.sysctl = { "fs.inotify.max_user_watches" = 204800; };
services = {
syncthing = {
dataDir = "/home/maralorn/.config/syncthing";
enable = true;
group = "users";
user = "maralorn";
openDefaultPorts = true;
};
};
}