fix: set firewall enable default to false

This commit is contained in:
2025-04-28 23:55:48 +02:00
parent aed3f2dbb7
commit a2b923764d

View File

@@ -121,7 +121,7 @@ in {
firewall = { firewall = {
enable = lib.mkOption { enable = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = true; default = false;
description = "Enable firewall"; description = "Enable firewall";
}; };
ipv4 = lib.mkOption { ipv4 = lib.mkOption {