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.enableAllFirmware = true;
|
||||||
hardware.cpu.intel.updateMicrocode = systemInformation.isIntel;
|
hardware.cpu.intel.updateMicrocode = systemInformation.isIntel;
|
||||||
|
hardware.cpu.amd.updateMicrocode = systemInformation.isAmd;
|
||||||
|
|
||||||
# high-resolution display
|
# high-resolution display
|
||||||
hardware.video.hidpi.enable = systemInformation.isHiDPI;
|
hardware.video.hidpi.enable = systemInformation.isHiDPI;
|
||||||
|
|
|
@ -7,4 +7,5 @@
|
||||||
|
|
||||||
isHiDPI = true;
|
isHiDPI = true;
|
||||||
isIntel = true;
|
isIntel = true;
|
||||||
|
isAmd = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue