fix(network): Use correct ipv6 addresses

This commit is contained in:
Tom Hubrecht 2024-01-08 17:18:55 +01:00
parent 43d1a9d79e
commit 7249301a33

View file

@ -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; };