From 5a8cdc5769210b1c60e7fa11a61a7903f1660c7e Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 20 Jun 2023 09:56:40 +0800 Subject: [PATCH] hosts/plover: disable DNSSEC It's giving me trouble for now. Ideally, this should be configured with the individual interfaces that is giving me the troubles. --- hosts/plover/modules/hardware/hetzner-cloud-cx21.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix b/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix index 264a52ed..9d74d5b7 100644 --- a/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix +++ b/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix @@ -50,7 +50,10 @@ in # The local DNS resolver. This should be used in conjunction with an # authoritative DNS server as a forwarder. Also, it should live in its # default address at 127.0.0.53 (as of systemd v252). - services.resolved.enable = true; + services.resolved = { + enable = true; + dnssec = "false"; + }; # The interface configuration is based from the following discussion: # https://discourse.nixos.org/t/nixos-on-hetzner-cloud-servers-ipv6/221/