modules/system/boot/loader/grub/memtest.nix: use 'memtest86plus' instead of 'memtest86'

The 'memtest86' package didn't work on any of my machines. 'memtest86plus', on
the other hand, seems to work just fine. Does anyone know why we keep the
seemingly older version around still?
This commit is contained in:
Peter Simons 2013-01-09 22:44:50 +01:00
parent b5e639dbb1
commit 91bead9c18
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
with pkgs.lib;
let
isEnabled = config.boot.loader.grub.memtest86;
memtest86 = pkgs.memtest86;
memtest86 = pkgs.memtest86plus;
in
{
options = {