From 1e4ac8067009f4a9a391cf31586062c1c7f293f9 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Sat, 28 Dec 2024 06:55:09 -0800 Subject: [PATCH] syncthing: expose webgui point --- modules/syncthing.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/syncthing.nix b/modules/syncthing.nix index b5863cd..f8d6e4b 100644 --- a/modules/syncthing.nix +++ b/modules/syncthing.nix @@ -13,6 +13,10 @@ in sops.secrets."syncthing/key" = { }; sops.secrets."syncthing/cert" = { }; + networking.firewall.allowedTCPPorts = [ + 8384 # web gui port + ]; + services.syncthing = let dataDir = config.services.syncthing.dataDir; in {