diff --git a/lib/fudo/dns.nix b/lib/fudo/dns.nix index f714930..fc912ae 100644 --- a/lib/fudo/dns.nix +++ b/lib/fudo/dns.nix @@ -8,6 +8,12 @@ let domainOpts = { name, ... }: { options = with types; { + domain = mkOption { + type = str; + description = "Domain name."; + default = name; + }; + dnssec = mkOption { type = bool; description = "Enable DNSSEC security for this zone.";