From b8273742e3bcacea6d2a685ac5c90762708cab05 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Mon, 17 Oct 2022 22:15:22 +0200 Subject: [PATCH] wifi: switch backend back to wpa_supplicant --- modules/core/networking.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/core/networking.nix b/modules/core/networking.nix index c5ec9cbe..b9472024 100644 --- a/modules/core/networking.nix +++ b/modules/core/networking.nix @@ -33,7 +33,8 @@ in networking.networkmanager = { # Enable networkmanager. REMEMBER to add yourself to group in order to use nm related stuff. enable = true; - wifi.backend = "iwd"; + # not as stable as wpa_supplicant yet, also more trouble with 5 GHz networks + #wifi.backend = "iwd"; }; networking.firewall.enable = true;