This commit is contained in:
Schrottkatze 2022-09-02 08:40:33 +02:00
parent 44a85ad4fb
commit 6a35e0a261
3 changed files with 12 additions and 7 deletions

View file

@ -145,5 +145,12 @@ with builtins;
networking.firewall.allowedTCPPorts = [ 8384 22000 ];
networking.firewall.allowedUDPPorts = [ 8080 22000 21027 ];
systemd.services."NetworkManager-wait-online".enable = false;
services.syncthing = rec {
enable = true;
user = "jade";
dataDir = "/home/${user}/Documents";
configDir = "/home/${user}/Documents/.config/syncthing";
};
}