mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
* 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 {
|
||||
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.
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue