diff options
| author | Mel <einebeere@gmail.com> | 2024-11-13 23:16:03 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-11-13 23:16:03 +0100 |
| commit | 0b4cd202dbb96ac949891247bbc2c8b1bb654db3 (patch) | |
| tree | c526bbe1e05168f6fa4d7c82ecac22a8f5ae7c78 /machines | |
| parent | 8e5496dee2986c7826c2844e7731b2b0d99c00c3 (diff) | |
| download | network-0b4cd202dbb96ac949891247bbc2c8b1bb654db3.tar.zst network-0b4cd202dbb96ac949891247bbc2c8b1bb654db3.zip | |
Disable firewall on corsac (for now)
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/corsac/devices.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/corsac/devices.nix b/machines/corsac/devices.nix index 0c4ddd7..224029b 100644 --- a/machines/corsac/devices.nix +++ b/machines/corsac/devices.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ lib, config, pkgs, ... }: { # boot settings @@ -14,7 +14,7 @@ networking = { useDHCP = false; # todo: configure properly - firewall.enable = false; + firewall.enable = lib.mkForce false; }; systemd.network.enable = true; |
