feat(dns): add A/AAAA records of name servers

This commit is contained in:
Julien Malka 2024-08-24 15:00:28 +02:00
parent 27031b0297
commit 23bbac6408
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -96,6 +96,16 @@ lib.mkMerge [
'';
networking.firewall.allowedUDPPorts = [ 53 ];
machine.meta.zones."julienmalka.me".subdomains = {
ns1 = {
A = [ "82.67.34.230" ];
AAAA = [ "2a01:e0a:de4:a0e0:2f0:cbff:feef:e12a" ];
};
ns2 = {
A = [ "163.172.91.82" ];
AAAA = [ "2001:bc8:3d24::45" ];
};
};
}