From 7e67fdc42760cdf946db8a06fce83583b6b2a7d2 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 8 Jan 2024 23:25:37 +0300 Subject: [PATCH] Fix openFirewall setting --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 4993777..5404278 100644 --- a/flake.nix +++ b/flake.nix @@ -220,7 +220,7 @@ }; networking.firewall.allowedTCPPorts = - optionals cfg.openFirewall [ cfg.port ]; + optionals cfg.openFirewall [ cfg.httpPort cfg.httpsPort ]; }; }; });