feat: add options for ipv4 and ipv6

This commit is contained in:
2025-04-28 10:14:54 +02:00
parent 7021603e4e
commit 45a60ff746

View File

@@ -119,6 +119,16 @@ in {
default = true;
description = "Enable firewall";
};
ipv4 = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable firewall";
};
ipv6 = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable firewall";
};
interfaces = {
wan = lib.mkOption {
type = lib.types.str;