forked from mirrors/nixpkgs
192f8e7699
license was misinterpreted, it is now only conditionally in the all firmware list included, if `allowUnfree` is set. fixes #25567
36 lines
626 B
Nix
36 lines
626 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
hardware.enableAllFirmware = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Turn on this option if you want to enable all the firmware shipped in linux-firmware.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.hardware.enableAllFirmware {
|
|
hardware.firmware = with pkgs; [
|
|
firmwareLinuxNonfree
|
|
intel2200BGFirmware
|
|
rtl8723bs-firmware
|
|
rtl8192su-firmware
|
|
] ++ optionals config.nixpkgs.config.allowUnfree [
|
|
broadcom-bt-firmware
|
|
];
|
|
};
|
|
|
|
}
|