From cea70d24e97f29ed458ae3d23a50d69b188fef22 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Dec 2009 18:21:55 +0000 Subject: [PATCH] * 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 --- modules/installer/grub/grub.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/installer/grub/grub.nix b/modules/installer/grub/grub.nix index 1d1180f3759a..7919b71b9d7f 100644 --- a/modules/installer/grub/grub.nix +++ b/modules/installer/grub/grub.nix @@ -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. ''; };