From 1da72333d9aa9cf1a1d1143d0540cdd73e9a2059 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 6 Jan 2010 12:24:20 +0000 Subject: [PATCH] * Put the NixOS boot at the top so that it's the default. svn path=/nixos/trunk/; revision=19255 --- modules/installer/cd-dvd/iso-image.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/installer/cd-dvd/iso-image.nix b/modules/installer/cd-dvd/iso-image.nix index 7e624244048..ea9709a9925 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;