2013-08-14 01:27:44 +01:00
|
|
|
{ config, pkgs, ... }:
|
2009-05-20 11:44:50 +01:00
|
|
|
|
2009-08-04 09:50:02 +01:00
|
|
|
{
|
2009-05-20 11:44:50 +01:00
|
|
|
|
2009-08-04 09:50:02 +01:00
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-08-04 09:50:02 +01:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
2009-05-24 19:36:32 +01:00
|
|
|
|
2009-05-20 11:44:50 +01:00
|
|
|
};
|
|
|
|
|
2009-08-04 09:50:02 +01:00
|
|
|
|
|
|
|
###### implementation
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-08-04 09:50:02 +01:00
|
|
|
config = pkgs.lib.mkIf config.networking.enableIntel3945ABGFirmware {
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2013-08-14 01:27:44 +01:00
|
|
|
hardware.enableAllFirmware = true;
|
2009-08-04 09:50:02 +01:00
|
|
|
|
2009-05-20 11:44:50 +01:00
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-05-20 11:44:50 +01:00
|
|
|
}
|