···
cfg = config.networking.wireless;
-
configFile = "/etc/wpa_supplicant.conf";
-
optional (config.networking.WLANInterface != "") config.networking.WLANInterface;
-
networking.WLANInterface = mkOption {
-
description = "Obsolete. Use <option>networking.wireless.interfaces</option> instead.";
-
Whether to start <command>wpa_supplicant</command> to scan for
-
and associate with wireless networks. Note: NixOS currently
-
does not manage <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>), or use
-
networking.wireless.userControlled.* to allow users to add entries
-
through <command>wpa_cli</command> and <command>wpa_gui</command>.
type = types.listOf types.str;
example = [ "wlan0" "wlan1" ];
-
The interfaces <command>wpa_supplicant</command> will use. If empty, it will
automatically use all wireless interfaces.
···
description = "Force a specific wpa_supplicant driver.";
···
to depend on a large package such as NetworkManager just to pick nearby
-
When you want to use this, make sure ${configFile} doesn't exist.
-
It will be created for you.
-
Currently it is also necessary to explicitly specify networking.wireless.interfaces.
···
-
config = mkIf cfg.enable {
-
environment.systemPackages = [ pkgs.wpa_supplicant ];
-
services.dbus.packages = [ pkgs.wpa_supplicant ];
-
# FIXME: start a separate wpa_supplicant instance per interface.
-
{ description = "WPA Supplicant";
wantedBy = [ "network.target" ];
path = [ pkgs.wpa_supplicant ];
-
chmod 600 ${configFile}
-
'' + optionalString cfg.userControlled.enable ''
-
if [ ! -s ${configFile} ]; then
-
echo "ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=${cfg.userControlled.group}" >> ${configFile}
-
echo "update_config=1" >> ${configFile}
-
${if ifaces == [] then ''
-
for i in $(cd /sys/class/net && echo *); do
-
source /sys/class/net/$i/uevent
-
if [ "$DEVTYPE" = "wlan" -o -e /sys/class/net/$i/wireless ]; then
-
ifaces="$ifaces''${ifaces:+ -N} -i$i"
-
ifaces="${concatStringsSep " -N " (map (i: "-i${i}") ifaces)}"
-
exec wpa_supplicant -s -u -D${cfg.driver} -c ${configFile} $ifaces
-
powerManagement.resumeCommands =
${config.systemd.package}/bin/systemctl try-restart wpa_supplicant
-
assertions = [{ assertion = !cfg.userControlled.enable || cfg.interfaces != [];
-
message = "user controlled wpa_supplicant needs explicit networking.wireless.interfaces";}];
-
# Restart wpa_supplicant when a wlan device appears or disappears.
-
services.udev.extraRules =
ACTION=="add|remove", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", RUN+="${config.systemd.package}/bin/systemctl try-restart wpa_supplicant.service"