Add microcode updates for AMD
This commit is contained in:
parent
2008a0f264
commit
3325f2b593
|
@ -190,6 +190,7 @@ let systemInformation = import ./system/system-information.nix; in
|
|||
};
|
||||
hardware.enableAllFirmware = true;
|
||||
hardware.cpu.intel.updateMicrocode = systemInformation.isIntel;
|
||||
hardware.cpu.amd.updateMicrocode = systemInformation.isAmd;
|
||||
|
||||
# high-resolution display
|
||||
hardware.video.hidpi.enable = systemInformation.isHiDPI;
|
||||
|
|
|
@ -7,4 +7,5 @@
|
|||
|
||||
isHiDPI = true;
|
||||
isIntel = true;
|
||||
isAmd = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue