3
0
Fork 0
forked from mirrors/nixpkgs

wpa_supplicant: add D-Bus interface

svn path=/nixos/trunk/; revision=30972
This commit is contained in:
Yury G. Kudryashov 2011-12-19 23:16:32 +00:00
parent ae82e7b048
commit a87a1bca04

View file

@ -44,6 +44,8 @@ in
environment.systemPackages = [ pkgs.wpa_supplicant ];
services.dbus.packages = [ pkgs.wpa_supplicant ];
jobs.wpa_supplicant =
{ startOn = "started network-interfaces";
stopOn = "stopping network-interfaces";
@ -57,8 +59,8 @@ in
'';
exec =
"wpa_supplicant -s -C /var/run/wpa_supplicant " +
"-c ${configFile} -i${config.networking.WLANInterface}";
"wpa_supplicant -s -u -c ${configFile} "
+ (optionalString (config.networking.WLANInterface != null) "-i ${config.networking.WLANInterface}");
};
};