From adf629d596913e6ddd064827ba294293bf5c9575 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Wed, 10 Apr 2024 19:06:51 -0400 Subject: [PATCH] updated allowedTCPPorts --- modules/endlessh.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/endlessh.nix b/modules/endlessh.nix index 9194792..86e2612 100644 --- a/modules/endlessh.nix +++ b/modules/endlessh.nix @@ -8,8 +8,6 @@ }; }; - networking.firewall = lib.mkIf config.services.endlessh-go.enable { - allowedTCPPorts = 22; - }; + networking.firewall = lib.mkIf config.services.endlessh-go.enable { allowedTCPPorts = [ 22 ]; }; }; }