nixos/installer/cd-dvd/iso-image: use new combined memtest86plus binary

memtest86plus puts the path to the binary at a passthru attr

after memtest86plus 8 there's a single combined EFI+legacy file
This commit is contained in:
Luna Nova 2025-11-26 22:16:28 -08:00 committed by K900
commit fb05ac176a

View file

@ -1014,7 +1014,7 @@ in
]
++ lib.optionals (config.boot.loader.grub.memtest86.enable && config.isoImage.makeBiosBootable) [
{
source = "${pkgs.memtest86plus}/memtest.bin";
source = pkgs.memtest86plus.efi;
target = "/boot/memtest.bin";
}
]