2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-10-12 19:27:57 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-07-16 23:08:32 +02:00
|
|
|
|
|
|
|
let
|
2012-04-01 12:54:10 +02:00
|
|
|
cfg = config.networking.wireless;
|
2015-12-29 11:21:38 +01:00
|
|
|
configFile = if cfg.networks != {} then pkgs.writeText "wpa_supplicant.conf" ''
|
|
|
|
${optionalString cfg.userControlled.enable ''
|
|
|
|
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=${cfg.userControlled.group}
|
|
|
|
update_config=1''}
|
|
|
|
${concatStringsSep "\n" (mapAttrsToList (ssid: networkConfig: ''
|
|
|
|
network={
|
|
|
|
ssid="${ssid}"
|
|
|
|
${optionalString (networkConfig.psk != null) ''psk="${networkConfig.psk}"''}
|
|
|
|
${optionalString (networkConfig.psk == null) ''key_mgmt=NONE''}
|
|
|
|
}
|
|
|
|
'') cfg.networks)}
|
|
|
|
'' else "/etc/wpa_supplicant.conf";
|
2015-12-26 02:12:32 +01:00
|
|
|
in {
|
2009-07-16 23:08:32 +02:00
|
|
|
options = {
|
2012-04-01 12:54:10 +02:00
|
|
|
networking.wireless = {
|
2015-12-29 11:21:38 +01:00
|
|
|
enable = mkEnableOption "wpa_supplicant";
|
2012-04-01 12:54:10 +02:00
|
|
|
|
|
|
|
interfaces = mkOption {
|
2015-06-15 18:18:46 +02:00
|
|
|
type = types.listOf types.str;
|
2012-04-01 12:54:10 +02:00
|
|
|
default = [];
|
|
|
|
example = [ "wlan0" "wlan1" ];
|
|
|
|
description = ''
|
2015-12-29 11:21:38 +01:00
|
|
|
The interfaces <command>wpa_supplicant</command> will use. If empty, it will
|
2014-04-24 18:16:12 +02:00
|
|
|
automatically use all wireless interfaces.
|
2012-04-01 12:54:10 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
driver = mkOption {
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2013-01-22 12:32:19 +01:00
|
|
|
default = "nl80211,wext";
|
2012-11-02 17:05:30 +01:00
|
|
|
description = "Force a specific wpa_supplicant driver.";
|
2012-04-01 12:54:10 +02:00
|
|
|
};
|
2009-12-09 21:30:40 +01:00
|
|
|
|
2015-12-29 11:21:38 +01:00
|
|
|
networks = mkOption {
|
|
|
|
type = types.attrsOf (types.submodule {
|
|
|
|
options = {
|
|
|
|
psk = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
The network's pre-shared key in plaintext defaulting
|
|
|
|
to being a network without any authentication.
|
2016-01-06 04:57:25 +01:00
|
|
|
|
|
|
|
Be aware that these will be written to the nix store
|
|
|
|
in plaintext!
|
2015-12-29 11:21:38 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
description = ''
|
|
|
|
The network definitions to automatically connect to when
|
|
|
|
<command>wpa_supplicant</command> is running. If this
|
|
|
|
parameter is left empty wpa_supplicant will use
|
|
|
|
/etc/wpa_supplicant.conf as the configuration file.
|
|
|
|
'';
|
|
|
|
default = {};
|
|
|
|
example = literalExample ''
|
|
|
|
echelon = {
|
|
|
|
psk = "abcdefgh";
|
|
|
|
};
|
|
|
|
"free.wifi" = {};
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2012-04-01 12:54:10 +02:00
|
|
|
userControlled = {
|
|
|
|
enable = mkOption {
|
2013-10-29 13:04:26 +01:00
|
|
|
type = types.bool;
|
2012-04-01 12:54:10 +02:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Allow normal users to control wpa_supplicant through wpa_gui or wpa_cli.
|
2015-02-17 22:14:29 +01:00
|
|
|
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.
|
2012-04-01 12:54:10 +02:00
|
|
|
|
2015-12-29 11:21:38 +01:00
|
|
|
When using a declarative network specification you cannot persist any
|
|
|
|
settings via wpa_gui or wpa_cli.
|
2012-04-01 12:54:10 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2012-04-01 12:54:10 +02:00
|
|
|
default = "wheel";
|
|
|
|
example = "network";
|
2012-11-02 17:05:30 +01:00
|
|
|
description = "Members of this group can control wpa_supplicant.";
|
2012-04-01 12:54:10 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2009-07-16 23:08:32 +02:00
|
|
|
};
|
|
|
|
|
2015-12-26 02:12:32 +01:00
|
|
|
config = mkMerge [
|
|
|
|
(mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ pkgs.wpa_supplicant ];
|
2009-07-16 23:08:32 +02:00
|
|
|
|
2015-12-26 02:12:32 +01:00
|
|
|
services.dbus.packages = [ pkgs.wpa_supplicant ];
|
2011-12-20 00:16:32 +01:00
|
|
|
|
2015-12-26 02:12:32 +01:00
|
|
|
# FIXME: start a separate wpa_supplicant instance per interface.
|
|
|
|
systemd.services.wpa_supplicant = let
|
|
|
|
ifaces = cfg.interfaces;
|
|
|
|
in {
|
|
|
|
description = "WPA Supplicant";
|
2013-01-10 13:46:34 +01:00
|
|
|
|
|
|
|
wantedBy = [ "network.target" ];
|
2009-07-24 02:31:42 +02:00
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
path = [ pkgs.wpa_supplicant ];
|
|
|
|
|
2015-12-26 02:12:32 +01:00
|
|
|
script = ''
|
|
|
|
${if ifaces == [] then ''
|
|
|
|
for i in $(cd /sys/class/net && echo *); do
|
|
|
|
DEVTYPE=
|
|
|
|
source /sys/class/net/$i/uevent
|
|
|
|
if [ "$DEVTYPE" = "wlan" -o -e /sys/class/net/$i/wireless ]; then
|
|
|
|
ifaces="$ifaces''${ifaces:+ -N} -i$i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'' else ''
|
|
|
|
ifaces="${concatStringsSep " -N " (map (i: "-i${i}") ifaces)}"
|
|
|
|
''}
|
|
|
|
exec wpa_supplicant -s -u -D${cfg.driver} -c ${configFile} $ifaces
|
|
|
|
'';
|
2009-07-16 23:08:32 +02:00
|
|
|
};
|
2012-06-29 11:53:08 +02:00
|
|
|
|
2015-12-26 02:12:32 +01:00
|
|
|
powerManagement.resumeCommands = ''
|
2013-01-16 13:17:57 +01:00
|
|
|
${config.systemd.package}/bin/systemctl try-restart wpa_supplicant
|
2012-02-19 23:53:25 +01:00
|
|
|
'';
|
|
|
|
|
2015-12-26 02:12:32 +01:00
|
|
|
# Restart wpa_supplicant when a wlan device appears or disappears.
|
|
|
|
services.udev.extraRules = ''
|
2014-04-28 20:10:49 +02:00
|
|
|
ACTION=="add|remove", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", RUN+="${config.systemd.package}/bin/systemctl try-restart wpa_supplicant.service"
|
|
|
|
'';
|
2015-12-26 02:12:32 +01:00
|
|
|
})
|
|
|
|
{
|
|
|
|
meta.maintainers = with lib.maintainers; [ globin ];
|
|
|
|
}
|
|
|
|
];
|
2009-07-16 23:08:32 +02:00
|
|
|
}
|