From 608916921014120a71c16cea9dba4990ce4a3e29 Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Sun, 9 May 2021 02:15:49 -0400 Subject: [PATCH] Fix error --- common/boot/firmware.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/boot/firmware.nix b/common/boot/firmware.nix index a1e1551..dcbd55d 100644 --- a/common/boot/firmware.nix +++ b/common/boot/firmware.nix @@ -8,7 +8,7 @@ in { enable = mkEnableOption "enable x86_64 firmware"; }; - config = mkIf cfg.firmware.x86_64.enable { + config = mkIf cfg.x86_64.enable { hardware.cpu.intel.updateMicrocode = true; hardware.cpu.amd.updateMicrocode = true; };