nixos/amd-microcode: remove alias

This commit is contained in:
Guanran Wang 2024-09-08 15:15:12 +08:00
parent a55aaa547c
commit bde8f99741
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.amd.updateMicrocode {
# Microcode updates must be the first item prepended in the initrd
boot.initrd.prepend = lib.mkOrder 1 [ "${pkgs.microcodeAmd}/amd-ucode.img" ];
boot.initrd.prepend = lib.mkOrder 1 [ "${pkgs.microcode-amd}/amd-ucode.img" ];
};
}