From 57f70db611cde0bd5aa26a32df4f0bfc6378eb19 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 20 Dec 2009 16:51:22 +0000 Subject: [PATCH] * Revert r19003 for now, because wpa_supplicant 0.6.9 (in the Nixpkgs trunk) doesn't have a -s flag. 0.7.0 in the stdenv branch presumably does, but it's marked as unstable upstream. svn path=/nixos/trunk/; revision=19047 --- modules/services/networking/wpa_supplicant.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/services/networking/wpa_supplicant.nix b/modules/services/networking/wpa_supplicant.nix index abf79c5d554..10c9041cf3e 100644 --- a/modules/services/networking/wpa_supplicant.nix +++ b/modules/services/networking/wpa_supplicant.nix @@ -56,8 +56,7 @@ in exec = "${pkgs.wpa_supplicant}/sbin/wpa_supplicant " + - "-s -C /var/run/wpa_supplicant " + - "-c ${configFile} -i${config.networking.WLANInterface}"; + "-C /var/run/wpa_supplicant -c ${configFile} -i${config.networking.WLANInterface}"; }; };