Substitute "types.uniq types.string" -> "types.str"

This commit is contained in:
Eelco Dolstra
2013-10-30 14:57:42 +01:00
parent 162b874469
commit 862e3dd977
35 changed files with 97 additions and 97 deletions
@@ -65,7 +65,7 @@ in
device = mkOption {
default = "";
example = "/dev/hda";
type = types.uniq types.string;
type = types.str;
description = ''
The device on which the GRUB boot loader will be installed.
The special value <literal>nodev</literal> means that a GRUB
@@ -89,7 +89,7 @@ in
configurationName = mkOption {
default = "";
example = "Stable 2.6.21";
type = types.uniq types.string;
type = types.str;
description = ''
GRUB entry name instead of default.
'';