Make GRUB 2 the default

Fixes #269.
This commit is contained in:
Eelco Dolstra 2013-10-07 11:06:08 +02:00
parent 8ec44f343d
commit 3ba15358bc

View file

@ -52,12 +52,13 @@ in
};
version = mkOption {
default = 1;
example = 2;
default = 2;
example = 1;
type = types.int;
description = ''
The version of GRUB to use: <literal>1</literal> for GRUB
Legacy (versions 0.9x), or <literal>2</literal> for GRUB 2.
Legacy (versions 0.9x), or <literal>2</literal> (the
default) for GRUB 2.
'';
};