From b57eae3d3fbd1f4878828ac52abae6774efc34e5 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Fri, 30 Jan 2026 14:34:34 +0100 Subject: [PATCH] wlan: Let networkd configure the interface --- modules/system/services/wlan.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/system/services/wlan.nix b/modules/system/services/wlan.nix index 3f0698f..3523359 100644 --- a/modules/system/services/wlan.nix +++ b/modules/system/services/wlan.nix @@ -20,10 +20,7 @@ in config = lib.mkIf cfg.enable { networking.wireless.iwd = { enable = true; - settings = { - General.EnableNetworkConfiguration = true; - Settings.AutoConnect = true; - }; + settings.General.EnableNetworkConfiguration = true; }; environment.systemPackages = [ pkgs.iwgtk ];