1{ config, pkgs, lib, ... }:
2
3{
4
5 ###### interface
6
7 options = {
8
9 networking.enableIntel3945ABGFirmware = lib.mkOption {
10 default = false;
11 type = lib.types.bool;
12 description = ''
13 This option enables automatic loading of the firmware for the Intel
14 PRO/Wireless 3945ABG.
15 '';
16 };
17
18 };
19
20
21 ###### implementation
22
23 config = lib.mkIf config.networking.enableIntel3945ABGFirmware {
24
25 hardware.enableAllFirmware = true;
26
27 };
28
29}