From d73d5c5f9025b49298ec95447b960e0964d0e68d Mon Sep 17 00:00:00 2001 From: Jacob Hinkle Date: Thu, 14 Sep 2023 07:45:56 -0400 Subject: [PATCH] Switch to networkmanager with applet --- machines/buck/configuration.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/machines/buck/configuration.nix b/machines/buck/configuration.nix index 3e23513..0659fe1 100644 --- a/machines/buck/configuration.nix +++ b/machines/buck/configuration.nix @@ -56,8 +56,9 @@ networking = { hostName = "buck"; # Define your hostname. enableIPv6 = true; - wireless = { - enable = true; + networkmanager.enable = true; + wireless = { # wpa_supplicant + enable = false; userControlled.enable = true; environmentFile = "/run/secrets/wifi/env"; networks = { @@ -87,6 +88,8 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ + networkmanager + networkmanagerapplet vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget ];