summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-11-13 23:16:03 +0100
committerMel <einebeere@gmail.com>2024-11-13 23:16:03 +0100
commit0b4cd202dbb96ac949891247bbc2c8b1bb654db3 (patch)
treec526bbe1e05168f6fa4d7c82ecac22a8f5ae7c78 /machines
parent8e5496dee2986c7826c2844e7731b2b0d99c00c3 (diff)
downloadnetwork-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.nix4
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;