mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 16:26:54 +01:00
21 lines
270 B
Nix
21 lines
270 B
Nix
|
{ dns }:
|
||
|
|
||
|
with dns.lib.combinators;
|
||
|
|
||
|
{
|
||
|
SOA = {
|
||
|
nameServer = "ns0";
|
||
|
adminEmail = "shdwdrgn@sourpuss.net";
|
||
|
serial = 2019030800;
|
||
|
};
|
||
|
|
||
|
NS = [
|
||
|
"ns0.opennic.glue."
|
||
|
];
|
||
|
|
||
|
subdomains = {
|
||
|
"ns0.opennic".A = [ "195.201.99.61" "168.119.153.26" ];
|
||
|
};
|
||
|
}
|
||
|
|