diff --git a/nixos/modules/services/networking/wpa_supplicant.nix b/nixos/modules/services/networking/wpa_supplicant.nix index 771eeecd772b..e2d34ea079c5 100644 --- a/nixos/modules/services/networking/wpa_supplicant.nix +++ b/nixos/modules/services/networking/wpa_supplicant.nix @@ -31,12 +31,14 @@ in description = '' Whether to start wpa_supplicant to scan for and associate with wireless networks. Note: NixOS currently - does not generate wpa_supplicant's + does not manage wpa_supplicant's configuration file, ${configFile}. You should edit this file yourself to define wireless networks, WPA keys and so on (see wpa_supplicant.conf - 5). + 5), or use + networking.wireless.userControlled.* to allow users to add entries + through wpa_cli and wpa_gui. ''; }; @@ -62,7 +64,9 @@ in default = false; description = '' Allow normal users to control wpa_supplicant through wpa_gui or wpa_cli. - This is useful for laptop users that switch networks a lot. + This is useful for laptop users that switch networks a lot and don't want + to depend on a large package such as NetworkManager just to pick nearby + access points. When you want to use this, make sure ${configFile} doesn't exist. It will be created for you.