From 7249301a33d4273591c68e595be89ff66cf560bd Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Mon, 8 Jan 2024 17:18:55 +0100 Subject: [PATCH] fix(network): Use correct ipv6 addresses --- modules/dgn-network.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/dgn-network.nix b/modules/dgn-network.nix index 951e989..e03e7ba 100644 --- a/modules/dgn-network.nix +++ b/modules/dgn-network.nix @@ -27,10 +27,10 @@ let "8.8.8.8#dns.google" "1.0.0.1#cloudflare-dns.com" "8.8.4.4#dns.google" - "[2606:4700:4700::1111]#cloudflare-dns.com" - "[2001:4860:4860::8888]#dns.google" - "[2606:4700:4700::1001]#cloudflare-dns.com" - "[2001:4860:4860::8844]#dns.google" + "2606:4700:4700::1111#cloudflare-dns.com" + "2001:4860:4860::8888#dns.google" + "2606:4700:4700::1001#cloudflare-dns.com" + "2001:4860:4860::8844#dns.google" ]; networkConfig = optionalAttrs (net ? DHCP) { inherit (net) DHCP; };