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