* The default default menu item (sic) should be 0, not 1. (Or is this

different for GRUB 2?)
* Clean up the option descriptions.

svn path=/nixos/trunk/; revision=18976
This commit is contained in:
Eelco Dolstra 2009-12-15 18:21:55 +00:00
parent 6c9059e717
commit cea70d24e9
1 changed files with 3 additions and 3 deletions

View File

@ -129,14 +129,14 @@ in
timeout = mkOption { timeout = mkOption {
default = 5; default = 5;
description = '' description = ''
after timeout seconds grub will boot the default menu item. Timeout (in seconds) until GRUB boots the default menu item.
''; '';
}; };
default = mkOption { default = mkOption {
default = 1; default = 0;
description = '' description = ''
index of grub menu item which will be booted Index of the default menu item to be booted.
''; '';
}; };