From 801dca549f70f201fd49476b82d7f2d7cd8e1d72 Mon Sep 17 00:00:00 2001 From: Artturin Date: Fri, 19 Nov 2021 18:16:01 +0200 Subject: [PATCH] nixos/tools: add networkmanager to configuration template --- nixos/modules/installer/tools/tools.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix index 2f3b0cdd48f2..f8a0ba34aa08 100644 --- a/nixos/modules/installer/tools/tools.nix +++ b/nixos/modules/installer/tools/tools.nix @@ -133,7 +133,9 @@ in $bootLoaderConfig # networking.hostName = "nixos"; # Define your hostname. + # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + # networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. # Set your time zone. # time.timeZone = "Europe/Amsterdam";