Merge pull request #92270 from samuelgrf/fix/whether-typo

nixos/*: fix misspellings of whether
This commit is contained in:
worldofpeace 2020-07-04 09:34:28 -04:00 committed by GitHub
commit d3a40e7cfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -67,7 +67,7 @@ in
type = types.bool; type = types.bool;
default = false; default = false;
description = '' description = ''
Wether to enable the slurm control daemon. Whether to enable the slurm control daemon.
Note that the standard authentication method is "munge". Note that the standard authentication method is "munge".
The "munge" service needs to be provided with a password file in order for The "munge" service needs to be provided with a password file in order for
slurm to work properly (see <literal>services.munge.password</literal>). slurm to work properly (see <literal>services.munge.password</literal>).
@ -135,7 +135,7 @@ in
type = types.bool; type = types.bool;
default = false; default = false;
description = '' description = ''
Wether to provide a slurm.conf file. Whether to provide a slurm.conf file.
Enable this option if you do not run a slurm daemon on this host Enable this option if you do not run a slurm daemon on this host
(i.e. <literal>server.enable</literal> and <literal>client.enable</literal> are <literal>false</literal>) (i.e. <literal>server.enable</literal> and <literal>client.enable</literal> are <literal>false</literal>)
but you still want to run slurm commands from this host. but you still want to run slurm commands from this host.

View File

@ -159,7 +159,7 @@ in
type = types.bool; type = types.bool;
default = false; default = false;
description = '' description = ''
Wheter to enable Tor control socket. Control socket is created Whether to enable Tor control socket. Control socket is created
in <literal>${torRunDirectory}/control</literal> in <literal>${torRunDirectory}/control</literal>
''; '';
}; };

View File

@ -93,7 +93,7 @@ in
type = types.bool; type = types.bool;
default = true; default = true;
description = '' description = ''
Wheter to enable HSTS if HTTPS is also enabled. Whether to enable HSTS if HTTPS is also enabled.
''; '';
}; };
maxAgeSeconds = mkOption { maxAgeSeconds = mkOption {
@ -385,7 +385,7 @@ in
type = types.bool; type = types.bool;
default = true; default = true;
description = '' description = ''
Wether to enable email registration. Whether to enable email registration.
''; '';
}; };
allowGravatar = mkOption { allowGravatar = mkOption {

View File

@ -54,7 +54,7 @@ let
type = types.bool // { merge = mergeFalseByDefault; }; type = types.bool // { merge = mergeFalseByDefault; };
default = false; default = false;
description = '' description = ''
Wether option should generate a failure when unused. Whether option should generate a failure when unused.
Upon merging values, mandatory wins over optional. Upon merging values, mandatory wins over optional.
''; '';
}; };