From a55aaa547c985f6b8d654b9fc1af13488891f1d3 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Sun, 8 Sep 2024 15:11:50 +0800 Subject: [PATCH] nixos/intel-microcode: remove alias --- nixos/modules/hardware/cpu/intel-microcode.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/hardware/cpu/intel-microcode.nix b/nixos/modules/hardware/cpu/intel-microcode.nix index 20e8518bf410..e708d447910e 100644 --- a/nixos/modules/hardware/cpu/intel-microcode.nix +++ b/nixos/modules/hardware/cpu/intel-microcode.nix @@ -16,7 +16,7 @@ ###### implementation config = lib.mkIf config.hardware.cpu.intel.updateMicrocode { # Microcode updates must be the first item prepended in the initrd - boot.initrd.prepend = lib.mkOrder 1 [ "${pkgs.microcodeIntel}/intel-ucode.img" ]; + boot.initrd.prepend = lib.mkOrder 1 [ "${pkgs.microcode-intel}/intel-ucode.img" ]; }; }