{ dns, zoneTTL ? 3600 }: with dns.lib.combinators; let inherit (builtins) hasAttr; merge = a: b: (a // b) // (if ((hasAttr "subdomains" a) && (hasAttr "subdomains" b)) then { subdomains = (a.subdomains // b.subdomains); } else { }); in { SOA = { nameServer = "ns2.darkkirb.de."; adminEmail = "lotte@chir.rs"; serial = 1; }; NS = [ "ns2.darkkirb.de." ]; DNSKEY = [ { flags.zoneSigningKey = true; flags.secureEntryPoint = true; algorithm = "ecdsap256sha256"; publicKey = "wB3TYl1UNG1f2p04/ExhCOib2iJD3mNo3F9vrwIBIP0kA94Z5xUVFQUMbSYrUIjA7/oNs/Degpo2RWFwnzFf2A=="; ttl = zoneTTL; } { flags.zoneSigningKey = true; algorithm = "ecdsap256sha256"; publicKey = "KdE0BQY5RqcHSYo9pgpjVAR1FAtaaF9elTzRhSE1dNKtVaMMhF5JA5s/tYVk1eY7JtiYVAOQkJsUduGTBOosDg=="; ttl = zoneTTL; } ]; subdomains = { gateway = { A = [ (ttl zoneTTL (a "10.0.0.1")) ]; AAAA = [ (ttl zoneTTL (aaaa "fd00:e621:e621::1")) ]; }; nas = { A = [ (ttl zoneTTL (a "10.0.2.2")) ]; AAAA = [ (ttl zoneTTL (aaaa "fd00:e621:e621:2::2")) ]; }; nixos-8gb-fsn1-1 = { AAAA = [ (ttl zoneTTL (aaaa "fd0d:a262:1fa6:e621:b4e1:8ff:e658:6f49")) ]; SSHFP = [ { algorithm = "rsa"; mode = "sha1"; fingerprint = "97b910c37194cd98e7edca2d68104f4531721c22"; ttl = zoneTTL; } { algorithm = "rsa"; mode = "sha256"; fingerprint = "7915470f9275116889d5ca1fdbea20416d8372636c3d63653b272308608cf70f"; ttl = zoneTTL; } { algorithm = "ed25519"; mode = "sha1"; fingerprint = "1aff467e745a8d68ba032dd3d54597e10d31ccf8"; ttl = zoneTTL; } { algorithm = "ed25519"; mode = "sha256"; fingerprint = "e6dcdb73dc381ee2b354528cdaf8552364e75c34316d7e0c9819801daea5c951"; ttl = zoneTTL; } ]; subdomains = { _tcp.subdomains."*".TLSA = [ { certUsage = "dane-ee"; selector = "spki"; match = "sha256"; certificate = "0b85bd8fd152ed8b29a25e7fd69c083138a7bd35d79aea62c111efcf17ede23f"; ttl = zoneTTL; } ]; _udp.subdomains."*".TLSA = [ { certUsage = "dane-ee"; selector = "spki"; match = "sha256"; certificate = "0b85bd8fd152ed8b29a25e7fd69c083138a7bd35d79aea62c111efcf17ede23f"; ttl = zoneTTL; } ]; }; HTTPS = [ { svcPriority = 1; targetName = "."; alpn = [ "http/1.1" "h2" "h3" ]; ipv4hint = [ "138.201.155.128" ]; ipv6hint = [ "2a01:4f8:1c17:d953:b4e1:8ff:e658:6f49" ]; ttl = zoneTTL; } ]; CAA = [ { issuerCritical = false; tag = "issue"; value = "letsencrypt.org"; ttl = zoneTTL; } { issuerCritical = false; tag = "issuewild"; value = "letsencrypt.org"; ttl = zoneTTL; } { issuerCritical = false; tag = "iodef"; value = "mailto:lotte@chir.rs"; ttl = zoneTTL; } ]; }; grafana.CNAME = [ "nixos-8gb-fsn1-1" ]; minio.CNAME = [ "nixos-8gb-fsn1-1" ]; minio-console.CNAME = [ "nixos-8gb-fsn1-1" ]; backup.CNAME = [ "nas" ]; cache.CNAME = [ "nixos-8gb-fsn1-1" ]; }; }