types.uniq types.str -> types.str
This commit is contained in:
parent
19ffa212af
commit
c63bc92d4c
|
@ -26,7 +26,7 @@ in
|
||||||
hardware.bumblebee.group = mkOption {
|
hardware.bumblebee.group = mkOption {
|
||||||
default = "wheel";
|
default = "wheel";
|
||||||
example = "video";
|
example = "video";
|
||||||
type = types.uniq types.str;
|
type = types.str;
|
||||||
description = ''Group for bumblebee socket'';
|
description = ''Group for bumblebee socket'';
|
||||||
};
|
};
|
||||||
hardware.bumblebee.connectDisplay = mkOption {
|
hardware.bumblebee.connectDisplay = mkOption {
|
||||||
|
|
|
@ -59,7 +59,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.system = mkOption {
|
nixpkgs.system = mkOption {
|
||||||
type = types.uniq types.str;
|
type = types.str;
|
||||||
example = "i686-linux";
|
example = "i686-linux";
|
||||||
description = ''
|
description = ''
|
||||||
Specifies the Nix platform type for which NixOS should be built.
|
Specifies the Nix platform type for which NixOS should be built.
|
||||||
|
|
Loading…
Reference in New Issue