diff options
| -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; |
