From bc41e797082af8331f9fd35af1b6f007b60c381e Mon Sep 17 00:00:00 2001 From: Jack Mechem Date: Mon, 16 Mar 2026 12:59:28 -0700 Subject: [PATCH] Change syncthing server to run on ipv4 0.0.0.0 --- modules/nixos/syncthingServer.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nixos/syncthingServer.nix b/modules/nixos/syncthingServer.nix index a79abb1..3e60c4f 100644 --- a/modules/nixos/syncthingServer.nix +++ b/modules/nixos/syncthingServer.nix @@ -5,6 +5,7 @@ services.syncthing = { enable = true; openDefaultPorts = true; + guiAddress = "0.0.0.0:8384"; }; networking.firewall.allowedTCPPorts = [ 8384 ];