From f10f4ae7fc93a85316be8b06f178d1ef90f288ce Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Wed, 22 Nov 2023 18:13:28 +0100 Subject: [PATCH] tower: init syncthing --- machines/tower/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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 ];