diff --git a/modules/installer/cd-dvd/iso-image.nix b/modules/installer/cd-dvd/iso-image.nix index 7e6242440483..ea9709a99255 100644 --- a/modules/installer/cd-dvd/iso-image.nix +++ b/modules/installer/cd-dvd/iso-image.nix @@ -194,15 +194,15 @@ in # The Grub menu. boot.loader.grub.extraEntries = '' - menuentry "Boot from hard disk" { - set root=(hd0) - chainloader +1 - } - menuentry "NixOS Installer / Rescue" { linux /boot/vmlinuz init=${config.system.build.bootStage2} systemConfig=${config.system.build.toplevel} ${toString config.boot.kernelParams} initrd /boot/initrd } + + menuentry "Boot from hard disk" { + set root=(hd0) + chainloader +1 + } ''; boot.loader.grub.timeout = 10;