diff --git a/authoritative-dns.nix b/authoritative-dns.nix index 82996d7..e697f82 100644 --- a/authoritative-dns.nix +++ b/authoritative-dns.nix @@ -73,6 +73,13 @@ in { type = str; description = "Timestamp to attach to zone record."; }; + + ip-host-map = mkOption { + type = attrsOf str; + description = + "Map of IP address to authoritative hostname. Unneeded hosts will be ignored."; + default = { }; + }; }; imports = [ ./nsd.nix ];