* Put the NixOS boot at the top so that it's the default.
svn path=/nixos/trunk/; revision=19255
This commit is contained in:
parent
c9e4b46d48
commit
1da72333d9
|
@ -194,15 +194,15 @@ in
|
||||||
# The Grub menu.
|
# The Grub menu.
|
||||||
boot.loader.grub.extraEntries =
|
boot.loader.grub.extraEntries =
|
||||||
''
|
''
|
||||||
menuentry "Boot from hard disk" {
|
|
||||||
set root=(hd0)
|
|
||||||
chainloader +1
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry "NixOS Installer / Rescue" {
|
menuentry "NixOS Installer / Rescue" {
|
||||||
linux /boot/vmlinuz init=${config.system.build.bootStage2} systemConfig=${config.system.build.toplevel} ${toString config.boot.kernelParams}
|
linux /boot/vmlinuz init=${config.system.build.bootStage2} systemConfig=${config.system.build.toplevel} ${toString config.boot.kernelParams}
|
||||||
initrd /boot/initrd
|
initrd /boot/initrd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
menuentry "Boot from hard disk" {
|
||||||
|
set root=(hd0)
|
||||||
|
chainloader +1
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
boot.loader.grub.timeout = 10;
|
boot.loader.grub.timeout = 10;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue