From 2df2bd2104c681dad4d36e7b4cb2e93c47d1e2dc Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 23 Dec 2023 18:34:12 +0800 Subject: [PATCH] hosts/ni: switch wireless setup to default Surprised it has lasted this long, really. --- hosts/ni/hardware-configuration.nix | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/hosts/ni/hardware-configuration.nix b/hosts/ni/hardware-configuration.nix index 1a424ca8..0acd9a99 100644 --- a/hosts/ni/hardware-configuration.nix +++ b/hosts/ni/hardware-configuration.nix @@ -14,29 +14,6 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - # The simpler WiFi manager. - networking.wireless.iwd = { - enable = true; - settings = { - General = { - EnableNetworkConfiguration = true; - ControlPortOverNL80211 = true; - }; - - Network.NameResolvingService = "systemd"; - Settings.AutoConnect = true; - }; - }; - - # Welp.... - systemd.network.links."80-iwd" = { - matchConfig = lib.mkForce { }; - linkConfig = lib.mkForce { }; - }; - - # Set the NetworkManager backend to iwd for workflows that use it. - networking.networkmanager.wifi.backend = "iwd"; - # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot = { enable = true;