* 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:
parent
6c9059e717
commit
cea70d24e9
|
@ -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.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue