Only install memtest on x86 machines.

This commit is contained in:
2025-10-25 17:53:56 +01:00
parent c7ff79d0c3
commit 092a8b3658

View File

@@ -1,8 +1,9 @@
{ lib, ... }:
{
boot.loader.systemd-boot = {
enable = true;
configurationLimit = 5;
memtest86.enable = true;
memtest86.enable = lib.mkIf (pkgs.system == "x86_64-linux") true;
};
boot.loader.efi.canTouchEfiVariables = true;
}