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