From ce65b4d01f6fd36fdd11ef016128ad39bb72f5cf Mon Sep 17 00:00:00 2001 From: fredrik Date: Sat, 17 Jan 2026 21:59:20 +0100 Subject: [PATCH] allow port 17 through firewall --- nix/module.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/module.nix b/nix/module.nix index 5099721..09b5ccd 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -82,5 +82,9 @@ in Accept = "yes"; }; }; + + networking.firewall.openTCPPorts = [ + 17 + ]; }; }