mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 10:56:35 +01:00
16 lines
186 B
Nix
16 lines
186 B
Nix
|
{ dns }:
|
||
|
|
||
|
with dns.lib.combinators;
|
||
|
|
||
|
{
|
||
|
SOA = {
|
||
|
nameServer = "ns2";
|
||
|
adminEmail = "shdwdrgn@sourpuss.net";
|
||
|
serial = 2019030800;
|
||
|
};
|
||
|
|
||
|
NS = [
|
||
|
"ns2.opennic.glue."
|
||
|
];
|
||
|
}
|