nixpkgs/nixos/modules/hardware/all-firmware.nix

29 lines
471 B
Nix
Raw Normal View History

2013-10-30 17:37:45 +01:00
{ config, pkgs, ... }:
with pkgs.lib;
{
###### interface
options = {
2013-10-30 17:37:45 +01:00
hardware.enableAllFirmware = mkOption {
default = false;
2013-10-30 17:37:45 +01:00
type = types.bool;
description = ''
Turn on this option if you want to enable all the firmware shipped with Debian/Ubuntu.
'';
};
};
###### implementation
2013-10-30 17:37:45 +01:00
config = mkIf config.hardware.enableAllFirmware {
2013-09-04 14:22:52 +02:00
hardware.firmware = [ "${pkgs.firmwareLinuxNonfree}/lib/firmware" ];
};
}