feat: add NS records to zones

This commit is contained in:
Luj 2024-08-13 20:21:19 +02:00
parent 086924cdab
commit f51bb5e066

View file

@ -21,8 +21,12 @@ let
adminEmail = "dns@malka.sh"; adminEmail = "dns@malka.sh";
serial = 0; serial = 0;
}; };
NS = [
"ns1"
"ns2"
];
defaults = { defaults = {
inherit SOA; inherit SOA NS;
}; };
in in
with lib; with lib;