mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-23 20:08:28 +01:00
Compare commits
No commits in common. "5fd78c276b577b879a98109eab67f3428e9ce8c3" and "3f5ea6e161c763580a040e6daa4cc4df6489bb51" have entirely different histories.
5fd78c276b
...
3f5ea6e161
2 changed files with 6 additions and 0 deletions
|
|
@ -56,6 +56,11 @@ in
|
|||
Gateway = cfg.gateway;
|
||||
GatewayOnLink = true;
|
||||
};
|
||||
dns = lib.mkIf (!cfg.useDhcp) [
|
||||
"1.1.1.1#cloudflare-dns.com"
|
||||
"8.8.8.8#dns.google"
|
||||
"9.9.9.9#dns.quad9.net"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -133,6 +133,7 @@ in
|
|||
address = [ netCfg.overlay.cidr ];
|
||||
dns = netCfg.overlay.dnsServers;
|
||||
domains = [ netCfg.overlay.domain ];
|
||||
networkConfig.DNSSEC = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue