mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 07:56:34 +01:00
20 lines
270 B
Nix
20 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" ];
|
|
};
|
|
}
|
|
|