From 27178a08652bf07fd010b468fa95ad3bd2bdaac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20H=C3=BCbner?= Date: Tue, 24 Jun 2025 11:25:06 +0200 Subject: [PATCH] Test allowing every port on its own --- dev_system.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev_system.nix b/dev_system.nix index c1c76b0..faf9810 100644 --- a/dev_system.nix +++ b/dev_system.nix @@ -24,9 +24,10 @@ in ]; networking.firewall = { - allowedTCPPortRanges = [ - { from = 8000; to = 8020; } - ]; + allowedTCPPorts = [ 8000 8001 8002 8003 ]; + # allowedTCPPortRanges = [ + # { from = 8000; to = 8020; } + # ]; }; sops = {