From 9c465fedfae8a8d74312948b4126181dee715d15 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 20 Dec 2009 22:03:32 +0000 Subject: [PATCH] * Reinstate the -s flag. svn path=/nixos/trunk/; revision=19055 --- modules/services/networking/wpa_supplicant.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/services/networking/wpa_supplicant.nix b/modules/services/networking/wpa_supplicant.nix index 10c9041cf3e..abf79c5d554 100644 --- a/modules/services/networking/wpa_supplicant.nix +++ b/modules/services/networking/wpa_supplicant.nix @@ -56,7 +56,8 @@ in exec = "${pkgs.wpa_supplicant}/sbin/wpa_supplicant " + - "-C /var/run/wpa_supplicant -c ${configFile} -i${config.networking.WLANInterface}"; + "-s -C /var/run/wpa_supplicant " + + "-c ${configFile} -i${config.networking.WLANInterface}"; }; };