mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
20 lines
327 B
Nix
20 lines
327 B
Nix
{ dns, lib }:
|
|
|
|
with dns.lib.combinators;
|
|
|
|
{
|
|
SOA = {
|
|
nameServer = "ns1";
|
|
adminEmail = "kat@kittywit.ch";
|
|
serial = 2021083001;
|
|
ttl = 3600;
|
|
};
|
|
|
|
CAA = map (x: x // { ttl = 3600; }) (letsEncrypt "acme@kittywit.ch");
|
|
|
|
NS = [
|
|
"ns1.kittywit.ch."
|
|
"rdns1.benjojo.co.uk."
|
|
"rdns2.benjojo.co.uk."
|
|
];
|
|
}
|