1
0
Fork 0
nixos-config/system/syncthing.nix

13 lines
269 B
Nix
Raw Normal View History

2018-02-08 23:51:40 +00:00
{
boot.kernel.sysctl = { "fs.inotify.max_user_watches" = 204800; };
services = {
syncthing = {
dataDir = "/home/maralorn/.config/syncthing";
enable = true;
group = "users";
user = "maralorn";
openDefaultPorts = true;
};
};
}