1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

chore: also disable per link DNS for ipv6 (dhcp, RA) on servers

This commit is contained in:
oddlama 2023-07-06 15:09:33 +02:00
parent 836cd7c6c2
commit e076aca5a0
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
3 changed files with 9 additions and 3 deletions

View file

@ -174,7 +174,9 @@
"10-${vmCfg.networking.mainLinkName}" = {
matchConfig.MACAddress = mac;
DHCP = "yes";
dhcpConfig.UseDNS = false;
dhcpV4Config.UseDNS = false;
dhcpV6Config.UseDNS = false;
ipv6AcceptRAConfig.UseDNS = false;
networkConfig = {
IPv6PrivacyExtensions = "yes";
MulticastDNS = true;