650b2258f0
remove the obsolete iwlwifi firmware which is included in the repo.
32 lines
518 B
Nix
32 lines
518 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 = [
|
|
"${pkgs.firmwareLinuxNonfree}/lib/firmware"
|
|
"${pkgs.iwlegacy}/lib/firmware"
|
|
];
|
|
};
|
|
|
|
}
|