mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
16 lines
193 B
Nix
16 lines
193 B
Nix
{ dns }:
|
|
|
|
with dns.lib.combinators;
|
|
|
|
{
|
|
SOA = {
|
|
nameServer = "ns1";
|
|
adminEmail = "kat@kittywit.ch";
|
|
serial = 0;
|
|
};
|
|
|
|
NS = [
|
|
"ns1.kittywit.ch."
|
|
"ns2.kittywit.ch."
|
|
];
|
|
}
|