Get firmware from lib/firmware

This commit is contained in:
Eelco Dolstra 2013-09-04 14:22:52 +02:00
parent 17457297cb
commit 25bd880472
3 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@
###### implementation
config = pkgs.lib.mkIf config.hardware.enableAllFirmware {
hardware.firmware = [ pkgs.firmwareLinuxNonfree ];
hardware.firmware = [ "${pkgs.firmwareLinuxNonfree}/lib/firmware" ];
};
}

View file

@ -22,7 +22,7 @@ with pkgs.lib;
###### implementation
config = mkIf config.hardware.cpu.amd.updateMicrocode {
hardware.firmware = [ pkgs.amdUcode ];
hardware.firmware = [ "${pkgs.amdUcode}/lib/firmware" ];
boot.kernelModules = [ "microcode" ];
};

View file

@ -22,7 +22,7 @@ with pkgs.lib;
###### implementation
config = mkIf config.hardware.cpu.intel.updateMicrocode {
hardware.firmware = [ pkgs.microcodeIntel ];
hardware.firmware = [ "${pkgs.microcodeIntel}/lib/firmware" ];
boot.kernelModules = [ "microcode" ];
};