2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2012-03-17 10:26:17 -07:00
|
|
|
|
2014-04-14 07:26:48 -07:00
|
|
|
with lib;
|
2012-02-22 12:28:44 -08:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2012-03-17 10:26:17 -07:00
|
|
|
hardware.cpu.intel.updateMicrocode = mkOption {
|
2012-02-22 12:28:44 -08:00
|
|
|
default = false;
|
2012-03-17 10:26:17 -07:00
|
|
|
type = types.bool;
|
2012-02-22 12:28:44 -08:00
|
|
|
description = ''
|
2012-03-17 10:26:17 -07:00
|
|
|
Update the CPU microcode for Intel processors.
|
2012-02-22 12:28:44 -08:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2012-03-17 10:26:17 -07:00
|
|
|
config = mkIf config.hardware.cpu.intel.updateMicrocode {
|
2017-02-27 08:12:33 -08:00
|
|
|
# Microcode updates must be the first item prepended in the initrd
|
|
|
|
boot.initrd.prepend = mkOrder 1 [ "${pkgs.microcodeIntel}/intel-ucode.img" ];
|
2012-02-22 12:28:44 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|