summary refs log tree commit diff
path: root/modules/hardware/network/intel-2200bg.nix
blob: dc67e1335fe826002e5b8f1e5e033cf326213a17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{pkgs, config, ...}:

{

  ###### interface

  options = {
  
    networking.enableIntel2200BGFirmware = pkgs.lib.mkOption {
      default = false;
      type = pkgs.lib.types.bool;
      description = ''
        Turn on this option if you want firmware for the Intel
        PRO/Wireless 2200BG to be loaded automatically.  This is
        required if you want to use this device.  Intel requires you to
        accept the license for this firmware, see
        <link xlink:href='http://ipw2200.sourceforge.net/firmware.php?fid=7'/>.
      '';
    };

  };


  ###### implementation
  
  config = pkgs.lib.mkIf config.networking.enableIntel2200BGFirmware {
  
    # Warning: setting this option requires acceptance of the firmware
    # license, see http://ipw2200.sourceforge.net/firmware.php?fid=7.
    hardware.firmware = [ pkgs.ipw2200fw ];

  };
  
}