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