mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:06:51 +01:00
20 lines
266 B
Nix
20 lines
266 B
Nix
{ lib }:
|
|
|
|
with 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" ];
|
|
};
|
|
}
|
|
|