From 45a60ff7466b2e548f2aa5e4f6b4207e615dab6e Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 28 Apr 2025 10:14:54 +0200 Subject: [PATCH] feat: add options for ipv4 and ipv6 --- modules/cloonar-assistant/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/cloonar-assistant/default.nix b/modules/cloonar-assistant/default.nix index b95c139..c445147 100644 --- a/modules/cloonar-assistant/default.nix +++ b/modules/cloonar-assistant/default.nix @@ -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;