···63 description = ''
64 A list of profiles used to setup the global environment.
65 '';
66- type = types.listOf types.string;
67 };
6869 environment.profileRelativeEnvVars = mkOption {
···63 description = ''
64 A list of profiles used to setup the global environment.
65 '';
66+ type = types.listOf types.str;
67 };
6869 environment.profileRelativeEnvVars = mkOption {
+1-1
nixos/modules/misc/assertions.nix
···21 warnings = mkOption {
22 internal = true;
23 default = [];
24- type = types.listOf types.string;
25 example = [ "The `foo' service is deprecated and will go away soon!" ];
26 description = ''
27 This option allows modules to show warnings to users during
···21 warnings = mkOption {
22 internal = true;
23 default = [];
24+ type = types.listOf types.str;
25 example = [ "The `foo' service is deprecated and will go away soon!" ];
26 description = ''
27 This option allows modules to show warnings to users during
+2-2
nixos/modules/programs/ssh.nix
···27 programs.ssh = {
2829 askPassword = mkOption {
30- type = types.string;
31 default = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass";
32 description = ''Program used by SSH to ask for passwords.'';
33 };
···77 };
7879 agentTimeout = mkOption {
80- type = types.nullOr types.string;
81 default = null;
82 example = "1h";
83 description = ''
···27 programs.ssh = {
2829 askPassword = mkOption {
30+ type = types.str;
31 default = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass";
32 description = ''Program used by SSH to ask for passwords.'';
33 };
···77 };
7879 agentTimeout = mkOption {
80+ type = types.nullOr types.str;
81 default = null;
82 example = "1h";
83 description = ''
···192193 extraGroups = mkOption {
194 default = [];
195- type = types.listOf types.string;
196 example = [ "postdrop" "mongodb" ];
197 description = ''
198 Extra groups for the logcheck user, for example to be able to use sendmail,
···192193 extraGroups = mkOption {
194 default = [];
195+ type = types.listOf types.str;
196 example = [ "postdrop" "mongodb" ];
197 description = ''
198 Extra groups for the logcheck user, for example to be able to use sendmail,
···118 };
119120 appendNameservers = mkOption {
121- type = types.listOf types.string;
122 default = [];
123 description = ''
124 A list of name servers that should be appended
···127 };
128129 insertNameservers = mkOption {
130- type = types.listOf types.string;
131 default = [];
132 description = ''
133 A list of name servers that should be inserted before
···118 };
119120 appendNameservers = mkOption {
121+ type = types.listOf types.str;
122 default = [];
123 description = ''
124 A list of name servers that should be appended
···127 };
128129 insertNameservers = mkOption {
130+ type = types.listOf types.str;
131 default = [];
132 description = ''
133 A list of name servers that should be inserted before