From bf93921109179e1cd2f448ea93f0dfb86930ef05 Mon Sep 17 00:00:00 2001 From: Niels Kunis Date: Wed, 17 Jan 2024 18:09:05 +0100 Subject: [PATCH] no ipv6 for kms.geokunis2.nl --- nixos/modules/networking/dmz/zones/geokunis2.nl.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/networking/dmz/zones/geokunis2.nl.nix b/nixos/modules/networking/dmz/zones/geokunis2.nl.nix index b215dbc..438700b 100644 --- a/nixos/modules/networking/dmz/zones/geokunis2.nl.nix +++ b/nixos/modules/networking/dmz/zones/geokunis2.nl.nix @@ -43,5 +43,11 @@ in A = [ publicIPv4 ]; AAAA = [ dmzServicesIPv6 ]; }; + + # Override because we don't support IPv6 for KMS. + kms = { + A = [ publicIPv4 ]; + AAAA = [ ]; + }; }; }