diff --git a/nixos/modules/networking/dmz_services/zones/geokunis2.nl.nix b/nixos/modules/networking/dmz_services/zones/geokunis2.nl.nix index 3959b5f..a3563b1 100644 --- a/nixos/modules/networking/dmz_services/zones/geokunis2.nl.nix +++ b/nixos/modules/networking/dmz_services/zones/geokunis2.nl.nix @@ -7,7 +7,7 @@ in SOA = { nameServer = "ns"; adminEmail = "hostmaster@geokunis2.nl"; - serial = 2024011401; + serial = 2024020500; }; NS = [ @@ -19,16 +19,9 @@ in MX = [ (mx.mx 10 "mail.geokunis2.nl.") ]; - A = [ cfg.public.ipv4.router ]; - AAAA = [ cfg.dmz.ipv6.dockerSwarm ]; CAA = letsEncrypt "caa@geokunis2.nl"; subdomains = { - "*" = { - A = [ cfg.public.ipv4.router ]; - AAAA = [ cfg.dmz.ipv6.dockerSwarm ]; - }; - ns = { A = [ cfg.public.ipv4.router ]; AAAA = [ cfg.dmz.ipv6.services ]; @@ -44,25 +37,5 @@ in AAAA = [ cfg.dmz.ipv6.services ]; }; - # Override because we don't support IPv6 for KMS. - kms = { - A = [ cfg.public.ipv4.router ]; - AAAA = [ ]; - }; - - wg = { - A = [ cfg.public.ipv4.router ]; - AAAA = [ cfg.public.ipv6.router ]; - }; - - wg4 = { - A = [ cfg.public.ipv4.router ]; - AAAA = [ ]; - }; - - wg6 = { - A = [ ]; - AAAA = [ cfg.public.ipv6.router ]; - }; }; }