Only install memtest on x86 machines.
This commit is contained in:
@@ -1,8 +1,9 @@
|
|||||||
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
boot.loader.systemd-boot = {
|
boot.loader.systemd-boot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configurationLimit = 5;
|
configurationLimit = 5;
|
||||||
memtest86.enable = true;
|
memtest86.enable = lib.mkIf (pkgs.system == "x86_64-linux") true;
|
||||||
};
|
};
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user