From afa86b08f7d67ac293b84c3d0b83316b9aa30b06 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 26 Apr 2022 15:28:07 +0200 Subject: [PATCH] zephyrus: enable intel microcode --- hosts/zephyrus/hardware-configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/zephyrus/hardware-configuration.nix b/hosts/zephyrus/hardware-configuration.nix index a973019..21c98d3 100644 --- a/hosts/zephyrus/hardware-configuration.nix +++ b/hosts/zephyrus/hardware-configuration.nix @@ -52,5 +52,8 @@ in { powerManagement.cpuFreqGovernor = mkDefault "powersave"; - hardware.enableRedistributableFirmware = true; + hardware = { + enableRedistributableFirmware = true; + cpu.intel.updateMicrocode = true; + }; }