From c7415ebe6970ed6ad0a75379597c245d62d5a6a8 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 30 Nov 2023 23:02:50 -0500 Subject: [PATCH] networking: Disable resolvconf Fixes an issue where newer versions of the Mullvad module would cause websites to not resolve. See: https://discourse.nixos.org/t/connected-to-mullvadvpn-but-no-internet-connection/35803 --- modules/networking.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/networking.nix b/modules/networking.nix index 69135a09..9769fb45 100644 --- a/modules/networking.nix +++ b/modules/networking.nix @@ -12,6 +12,8 @@ useHostResolvConf = true; + resolvconf.enable = false; + nat = { enable = true; internalInterfaces = [ "ve-+" ];