From 734338f51e7c384086ab973f4dadf65537bcf420 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Tue, 24 Jun 2025 12:54:13 -0400 Subject: [PATCH] allowed custom tcp ports --- modules/machine/valefor/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/machine/valefor/configuration.nix b/modules/machine/valefor/configuration.nix index 8a19ce8..709e4a2 100644 --- a/modules/machine/valefor/configuration.nix +++ b/modules/machine/valefor/configuration.nix @@ -87,7 +87,12 @@ # Core networking module (see ../../networking/core.nix) network = { - firewall.enable = true; + firewall = { + enable = true; + tcpPorts = { + allowedPorts = [8123]; + }; + }; networkManager.enable = true; };