Switch to networkmanager with applet

This commit is contained in:
Jacob Hinkle 2023-09-14 07:45:56 -04:00
parent bced09acc2
commit d73d5c5f90

View File

@ -56,8 +56,9 @@
networking = { networking = {
hostName = "buck"; # Define your hostname. hostName = "buck"; # Define your hostname.
enableIPv6 = true; enableIPv6 = true;
wireless = { networkmanager.enable = true;
enable = true; wireless = { # wpa_supplicant
enable = false;
userControlled.enable = true; userControlled.enable = true;
environmentFile = "/run/secrets/wifi/env"; environmentFile = "/run/secrets/wifi/env";
networks = { networks = {
@ -87,6 +88,8 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ 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. vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget wget
]; ];