diff options
author | Vincent Ambo <tazjin@google.com> | 2020-04-26T13·58+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-04-26T13·58+0100 |
commit | 64894062a9ddac94a1c65ed7b6803303ecf3b3ba (patch) | |
tree | d21af0d0c9196ecb36cd7f56a23b7d92e09f5623 /ops/nixos | |
parent | 0d7373974077125c15a7492edb37a9132998183a (diff) |
feat(ops/nixos/camden): Disable camden firewall r/690
The local network is considered trusted and ingress from the outside world is now handled by the Edgerouter.
Diffstat (limited to 'ops/nixos')
-rw-r--r-- | ops/nixos/camden/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix index f37d6a1f7884..8b586dced43e 100644 --- a/ops/nixos/camden/default.nix +++ b/ops/nixos/camden/default.nix @@ -88,7 +88,7 @@ in lib.fix(self: { } ]; - firewall.allowedTCPPorts = [ 22 8080 80 443 1935 ]; + firewall.enable = false; }; time.timeZone = "UTC"; |