From 2fe44b95d088067bb6a2a144300f3ae898185a1d Mon Sep 17 00:00:00 2001 From: Mathijs Kwik Date: Tue, 17 Feb 2015 22:14:29 +0100 Subject: [PATCH] nixos/wpa_supplicant: fix conflicting documentation fixes #6298 --- nixos/modules/services/networking/wpa_supplicant.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/wpa_supplicant.nix b/nixos/modules/services/networking/wpa_supplicant.nix index 771eeecd772..e2d34ea079c 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.