From 4ddb0a5bb842ff930ec95cddbf27567348c7196f Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Mon, 3 Jun 2024 10:50:02 +0200 Subject: [PATCH] feat: add allowed tcp ports to devenv --- modules/security.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/security.nix b/modules/security.nix index 6d092be..8ba9b4c 100644 --- a/modules/security.nix +++ b/modules/security.nix @@ -1,7 +1,6 @@ { config, lib, ... }: { security.polkit.enable = true; - # rtkit is optional but recommended security.rtkit.enable = true; networking.firewall.enable = true; @@ -14,7 +13,7 @@ }) // (lib.mkIf (config.bchmnn.devenv.enable) { networking.firewall = { - allowedTCPPorts = [ 3000 ]; + allowedTCPPorts = [ 3000 6969 8080 ]; }; })