types.uniq types.str -> types.str

This commit is contained in:
Eelco Dolstra 2015-06-15 18:12:32 +02:00
parent 19ffa212af
commit c63bc92d4c
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ in
hardware.bumblebee.group = mkOption {
default = "wheel";
example = "video";
type = types.uniq types.str;
type = types.str;
description = ''Group for bumblebee socket'';
};
hardware.bumblebee.connectDisplay = mkOption {

View file

@ -59,7 +59,7 @@ in
};
nixpkgs.system = mkOption {
type = types.uniq types.str;
type = types.str;
example = "i686-linux";
description = ''
Specifies the Nix platform type for which NixOS should be built.