nixos/intel-microcode: remove alias

This commit is contained in:
Guanran Wang 2024-09-08 15:11:50 +08:00
parent 00c3eae870
commit a55aaa547c
No known key found for this signature in database
GPG Key ID: 91F97D9ED12639CF

View File

@ -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" ];
};
}