mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +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:
parent
b5e639dbb1
commit
91bead9c18
|
@ -5,7 +5,7 @@
|
||||||
with pkgs.lib;
|
with pkgs.lib;
|
||||||
let
|
let
|
||||||
isEnabled = config.boot.loader.grub.memtest86;
|
isEnabled = config.boot.loader.grub.memtest86;
|
||||||
memtest86 = pkgs.memtest86;
|
memtest86 = pkgs.memtest86plus;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
|
|
Loading…
Reference in a new issue