Fix DNS configuration on warp for ACME certificate validation
This commit is contained in:
parent
ebe732b532
commit
194c8cbe26
1 changed files with 7 additions and 0 deletions
|
|
@ -26,6 +26,13 @@
|
||||||
|
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
|
# Disable resolvconf to prevent it from overwriting DNS settings
|
||||||
|
services.resolvconf.enable = false;
|
||||||
|
|
||||||
|
# Configure NetworkManager with static DNS servers for ACME certificate validation
|
||||||
|
networking.networkmanager.dns = "default";
|
||||||
|
networking.networkmanager.appendNameservers = [ "8.8.8.8" "1.1.1.1" "9.9.9.9" ];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
||||||
# Power management optimized for server use
|
# Power management optimized for server use
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue