* Put the NixOS boot at the top so that it's the default.

svn path=/nixos/trunk/; revision=19255
This commit is contained in:
Eelco Dolstra 2010-01-06 12:24:20 +00:00
parent c9e4b46d48
commit 1da72333d9

View File

@ -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;