* 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

View file

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