diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-27T02·46-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-27T02·49+0000 |
commit | 4a84b4af26a75c42b808b0749244651608b1285b (patch) | |
tree | 3d657aa70954f4c38ef2429065faec9710bb78c3 | |
parent | 3b709761b5506e448d7d29ee66846e21a1882ca6 (diff) |
feat(wpcarro/diogenes): Disable firewall 🔥 r/3450
Rely on GCP's VPC configuration, which dedupes my configuration efforts. Change-Id: Iab0751b2a73a4f41a82b2968ba6aa9ff73bf6ccc Reviewed-on: https://cl.tvl.fyi/c/depot/+/4691 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
-rw-r--r-- | users/wpcarro/nixos/diogenes/default.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/users/wpcarro/nixos/diogenes/default.nix b/users/wpcarro/nixos/diogenes/default.nix index 92066c49eaee..73b347ce3d6d 100644 --- a/users/wpcarro/nixos/diogenes/default.nix +++ b/users/wpcarro/nixos/diogenes/default.nix @@ -11,11 +11,7 @@ in { networking = { hostName = "diogenes"; - firewall.allowedTCPPorts = [ - 80 # http - 443 # https - 6698 # quassel - ]; + firewall.enable = false; }; # Use the TVL binary cache |