From 0ba98607463cfb49d9e8b3c971f2c65c89a5e8f1 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 2 Apr 2024 23:33:22 +0200 Subject: [PATCH] fix: fixed dns config --- hosts/elisabeth/net.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hosts/elisabeth/net.nix b/hosts/elisabeth/net.nix index 120a75a..ee27741 100644 --- a/hosts/elisabeth/net.nix +++ b/hosts/elisabeth/net.nix @@ -16,7 +16,14 @@ dhcpV4Config.UseDNS = false; ipv6AcceptRAConfig.UseDNS = false; networkConfig = { - IPv6PrivacyExtensions = "yes"; + MulticastDNS = true; + }; + }; + "40-lan01" = { + dhcpV6Config.UseDNS = false; + dhcpV4Config.UseDNS = false; + ipv6AcceptRAConfig.UseDNS = false; + networkConfig = { MulticastDNS = true; }; }; @@ -31,6 +38,7 @@ matchConfig.MACAddress = config.secrets.secrets.local.networking.interfaces.lan01.mac; dhcpV6Config.UseDNS = false; dhcpV4Config.UseDNS = false; + ipv6AcceptRAConfig.UseDNS = false; networkConfig = { IPv6PrivacyExtensions = "yes"; MulticastDNS = true;