diff --git a/machines/tower/default.nix b/machines/tower/default.nix index 5edbba1..7ddd877 100644 --- a/machines/tower/default.nix +++ b/machines/tower/default.nix @@ -165,6 +165,26 @@ }; + services.syncthing = { + enable = true; + user = "julien"; + group = "users"; + overrideDevices = true; + overrideFolders = true; + devices = { + "fischer" = { id = "MHV2PGN-GAHQMV5-ITXGNQS-IRJC3XL-OQIHVUX-JVKBZ6Z-33XHE7H-NC6H5AE"; }; + }; + folders = { + "dev" = { + # Name of folder in Syncthing, also the folder ID + path = "/home/julien/dev"; # Which folder to add to Syncthing + devices = [ "fischer" ]; # Which devices to share the folder with + }; + }; + }; + + systemd.services.syncthing.serviceConfig.StateDirectory = "syncthing"; + networking.firewall.allowedTCPPorts = [ 80 443 1810 9989 ]; networking.firewall.allowedUDPPorts = [ 80 443 1810 9989 ];