diff --git a/nix/configuration/roles/memtest86/default.nix b/nix/configuration/roles/memtest86/default.nix index f552ba2..490071a 100644 --- a/nix/configuration/roles/memtest86/default.nix +++ b/nix/configuration/roles/memtest86/default.nix @@ -8,10 +8,14 @@ { imports = [ ]; config = lib.mkMerge [ - { } - (lib.mkIf (config.me.buildingIso) { - # boot.loader.systemd-boot.memtest86.enable = true; - boot.loader.grub.memtest86.enable = true; - }) + { + environment.systemPackages = with pkgs; [ + memtest86plus + ]; + } + # (lib.mkIf (config.me.buildingIso) { + # boot.loader.systemd-boot.memtest86.enable = true; + # boot.loader.grub.memtest86.enable = true; + # }) ]; }