2009-10-12 19:27:57 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-07-16 23:08:32 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
configFile = "/etc/wpa_supplicant.conf";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2009-10-12 19:27:57 +02:00
|
|
|
networking.enableWLAN = mkOption {
|
2009-07-16 23:08:32 +02:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to start <command>wpa_supplicant</command> to scan for
|
|
|
|
and associate with wireless networks. Note: NixOS currently
|
|
|
|
does not generate <command>wpa_supplicant</command>'s
|
|
|
|
configuration file, <filename>${configFile}</filename>. You
|
|
|
|
should edit this file yourself to define wireless networks,
|
|
|
|
WPA keys and so on (see
|
|
|
|
<citerefentry><refentrytitle>wpa_supplicant.conf</refentrytitle>
|
|
|
|
<manvolnum>5</manvolnum></citerefentry>).
|
|
|
|
'';
|
|
|
|
};
|
2009-09-27 23:51:22 +02:00
|
|
|
|
2009-12-09 21:30:40 +01:00
|
|
|
networking.WLANInterface = mkOption {
|
|
|
|
default = "wlan0";
|
|
|
|
description = ''
|
2010-07-08 18:21:55 +02:00
|
|
|
The interface wpa_supplicant will use, if enableWLAN is set.
|
2009-12-09 21:30:40 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-07-16 23:08:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2009-10-12 19:27:57 +02:00
|
|
|
config = mkIf config.networking.enableWLAN {
|
2009-07-16 23:08:32 +02:00
|
|
|
|
2010-04-21 13:37:52 +02:00
|
|
|
environment.systemPackages = [ pkgs.wpa_supplicant ];
|
2009-07-16 23:08:32 +02:00
|
|
|
|
2011-12-20 00:16:32 +01:00
|
|
|
services.dbus.packages = [ pkgs.wpa_supplicant ];
|
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
jobs.wpa_supplicant =
|
2009-11-06 23:19:17 +01:00
|
|
|
{ startOn = "started network-interfaces";
|
|
|
|
stopOn = "stopping network-interfaces";
|
2009-07-24 02:31:42 +02:00
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
path = [ pkgs.wpa_supplicant ];
|
|
|
|
|
2009-07-16 23:08:32 +02:00
|
|
|
preStart =
|
|
|
|
''
|
|
|
|
touch -a ${configFile}
|
|
|
|
chmod 600 ${configFile}
|
|
|
|
'';
|
|
|
|
|
|
|
|
exec =
|
2011-12-20 00:16:32 +01:00
|
|
|
"wpa_supplicant -s -u -c ${configFile} "
|
|
|
|
+ (optionalString (config.networking.WLANInterface != null) "-i ${config.networking.WLANInterface}");
|
2009-07-16 23:08:32 +02:00
|
|
|
};
|
|
|
|
|
2012-02-19 23:53:25 +01:00
|
|
|
powerManagement.resumeCommands =
|
|
|
|
''
|
|
|
|
${config.system.build.upstart}/sbin/restart wpa_supplicant
|
|
|
|
'';
|
|
|
|
|
2009-07-16 23:08:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|