eb6e1310b8
svn path=/nixos/trunk/; revision=29285
30 lines
493 B
Nix
30 lines
493 B
Nix
{pkgs, config, ...}:
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
networking.enableIntel3945ABGFirmware = pkgs.lib.mkOption {
|
|
default = false;
|
|
type = pkgs.lib.types.bool;
|
|
description = ''
|
|
This option enables automatic loading of the firmware for the Intel
|
|
PRO/Wireless 3945ABG.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = pkgs.lib.mkIf config.networking.enableIntel3945ABGFirmware {
|
|
|
|
hardware.firmware = [ pkgs.iwlwifi3945ucode ];
|
|
|
|
};
|
|
|
|
}
|