1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/nixos/modules/tasks
Thomas Strobel c0248c0c1f networking module: init 'wlanInterfaces' option
Configuration option for setting up virtual WLAN interfaces.

If the hardware NIC supports it, then multiple virtual WLAN interfaces can be
configured through the options of the new 'networking.wlanInterfaces' module.
For example, the following configuration transforms the device with the persistent
udev name 'wlp6s0' into a managed and a ad hoc device with the device names
'wlan-managed0' and 'wlan-adhoc0', respectively:

networking.wlanInterfaces = {
    "wlan-managed0" = {
        type = "managed";
        device = "wlp6s0";
    };
    "wlan-adhoc0" = {
        type = "ibss";
        device = "wlp6s0";
    };
};

Internally, a udev rule is created that matches wlp6s0 and runs a script which adds
the missing virtual interfaces and re-configures the wlp6s0 interface accordingly.
Once the new interfaces are created by the Linux kernel, the configuration of the
interfaces is managed by udev and systemd in the usual way.
2015-10-01 15:35:30 +02:00
..
filesystems Remove zfs-git and spl-git 2015-09-29 14:54:12 +02:00
bcache.nix
cpu-freq.nix
encrypted-devices.nix encrypted-devices service: Fix keyed mount, clarify descriptions. 2015-09-22 09:49:28 +01:00
filesystems.nix Add filesystem option to automatically grow to the maximum size 2015-09-24 19:59:44 +02:00
kbd.nix
lvm.nix
network-interfaces-scripted.nix nixos networking: add vswitch option 2015-09-25 11:55:27 +02:00
network-interfaces-systemd.nix nixos networking: add vswitch option 2015-09-25 11:55:27 +02:00
network-interfaces.nix networking module: init 'wlanInterfaces' option 2015-10-01 15:35:30 +02:00
scsi-link-power-management.nix
swraid.nix
trackpoint.nix
tty-backgrounds-combine.sh