mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
feat(dns): add A/AAAA records of name servers
This commit is contained in:
parent
27031b0297
commit
23bbac6408
1 changed files with 10 additions and 0 deletions
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue