diff --git a/modules/nixos/system/boot.nix b/modules/nixos/system/boot.nix index 25d7f7d..f75f1f6 100644 --- a/modules/nixos/system/boot.nix +++ b/modules/nixos/system/boot.nix @@ -6,7 +6,10 @@ boot = { loader = { timeout = lib.mkDefault 0; # Hit F10 for a list of generations - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; efi.canTouchEfiVariables = true; }; kernelPackages = pkgs.linuxPackages_latest;