Revert "grub: removed orphaned mkOption configurationName"

The configurationName option value is still used by NixOS, this removal
breaks grub users.

This reverts commit bd811d32b4.
This commit is contained in:
Shea Levy 2014-08-27 03:26:40 -04:00
parent 0dc4edd90a
commit 4061c18c98

View file

@ -86,6 +86,15 @@ in
'';
};
configurationName = mkOption {
default = "";
example = "Stable 2.6.21";
type = types.str;
description = ''
GRUB entry name instead of default.
'';
};
extraPrepareConfig = mkOption {
default = "";
type = types.lines;