From 16b1ad9724122edb74db6423a913d56f8fa30a8b Mon Sep 17 00:00:00 2001 From: th3r00t Date: Wed, 20 Aug 2025 14:22:51 -0400 Subject: [PATCH] Changed synthing listen address --- configuration-server.nix | 4 ++-- modules/home-manager-common.nix | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configuration-server.nix b/configuration-server.nix index 520abf2..fe3ef1f 100644 --- a/configuration-server.nix +++ b/configuration-server.nix @@ -121,8 +121,8 @@ ]; # Open ports in the firewall. - networking.firewall.allowedTCPPorts = [ 21 22 80 443 5900 8080 ]; - networking.firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 ]; + networking.firewall.allowedTCPPorts = [ 21 22 80 443 5900 8080 8384]; + networking.firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 8384]; # Or disable the firewall altogether. # networking.firewall.enable = false; diff --git a/modules/home-manager-common.nix b/modules/home-manager-common.nix index f0e61b9..1447270 100644 --- a/modules/home-manager-common.nix +++ b/modules/home-manager-common.nix @@ -12,6 +12,7 @@ }; services.syncthing = { enable = true; + guiAddress = "0.0.0.0:8384" }; programs.ranger = { enable = true;