From 8fa991fce66c628a6c4cc97810008ff667e7f877 Mon Sep 17 00:00:00 2001 From: Aditya Date: Wed, 3 Jan 2024 12:42:10 +0530 Subject: [PATCH] fix internet connectivity in vms and containers --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 0b8d4d4..a937af7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -65,7 +65,10 @@ # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # Enable networking - networking.networkmanager.enable = true; + networking.networkmanager = { + enable = true; + unmanaged = [ "virbr0" "docker0" ]; + }; # Set your time zone. time.timeZone = "Asia/Kolkata";