1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

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

View file

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