lib.packagesFromDirectoryRecursive: Improved documentation (#359898)
[NixPkgs.git] / nixos / modules / hardware / network / b43.nix
blobfc4020c09a5dac63998c50af089e0292149ada22
1 { config, lib, pkgs, ... }:
2 let kernelVersion = config.boot.kernelPackages.kernel.version; in
6   ###### interface
8   options = {
10     networking.enableB43Firmware = lib.mkOption {
11       default = false;
12       type = lib.types.bool;
13       description = ''
14         Turn on this option if you want firmware for the NICs supported by the b43 module.
15       '';
16     };
18   };
21   ###### implementation
23   config = lib.mkIf config.networking.enableB43Firmware {
24     hardware.firmware = [ pkgs.b43Firmware_5_1_138 ];
25   };