From a86f361bb8cfac3845b96d49fcbb2faea669844f 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..953dce0 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -82,5 +82,9 @@ in Accept = "yes"; }; }; + + networking.firewall.allowedTCPPorts = [ + 17 + ]; }; }