treewide: fix spelling errors
This commit is contained in:
parent
45fe5c9854
commit
7d06e0cefe
18 changed files with 21 additions and 21 deletions
|
|
@ -49,10 +49,10 @@ if ($len == 0) {
|
|||
if ($ENV{"NIX_AUTO_RUN_INTERACTIVE"} // "") {
|
||||
while (1) {
|
||||
print STDERR "'$program' from package '$package' will be run, confirm? [yn]: ";
|
||||
chomp(my $comfirm = <STDIN>);
|
||||
if (lc $comfirm eq "n") {
|
||||
chomp(my $confirm = <STDIN>);
|
||||
if (lc $confirm eq "n") {
|
||||
exit 0;
|
||||
} elsif (lc $comfirm eq "y") {
|
||||
} elsif (lc $confirm eq "y") {
|
||||
last;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ in
|
|||
description = ''
|
||||
The package to use for this runner, nix will try to find the executable for this package.
|
||||
A more specific path can be set by using settings.runner.runner_executable instead.
|
||||
Uncompatible with certain runners, such as wine.
|
||||
Incompatible with certain runners, such as wine.
|
||||
'';
|
||||
type = types.nullOr types.package;
|
||||
};
|
||||
|
|
@ -130,7 +130,7 @@ in
|
|||
default = "";
|
||||
description = ''
|
||||
Specific option to point to a runner executable directly, don't set runner.package if you set this.
|
||||
Uncompatible with certain runners such as wine.
|
||||
Incompatible with certain runners such as wine.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ in
|
|||
{
|
||||
__config__ = {
|
||||
oldver = "my_custom_oldver.json";
|
||||
newver = "~/seperately_placed_newver.json";
|
||||
newver = "~/separately_placed_newver.json";
|
||||
keyfile = "keyfile.toml";
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ in
|
|||
freeformType = keyValueFormat.type;
|
||||
options = {
|
||||
user = mkOption {
|
||||
description = "Username or emaill address for Pandora music service authentication";
|
||||
description = "Username or email address for Pandora music service authentication";
|
||||
example = ''"groovy-tunes@example.com"'';
|
||||
type = nonEmptyStr;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ in
|
|||
meta.maintainers = [ lib.maintainers.justdeeevin ];
|
||||
|
||||
options.programs.quickshell = {
|
||||
enable = lib.mkEnableOption "quickshell, a flexbile QtQuick-based desktop shell toolkit.";
|
||||
enable = lib.mkEnableOption "quickshell, a flexible QtQuick-based desktop shell toolkit.";
|
||||
package = lib.mkPackageOption pkgs "quickshell" { nullable = true; };
|
||||
configs = lib.mkOption {
|
||||
type = lib.types.attrsOf lib.types.path;
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ in
|
|||
|
||||
UR`ircs://`, `irc://`, and `irc+insecure://` URLs are supported,
|
||||
in which case only the hostname and port parts will be used. If
|
||||
the scheme is `ircs/irc+insecure`, tls will be overriden and set
|
||||
the scheme is `ircs/irc+insecure`, tls will be overridden and set
|
||||
to true/false accordingly.
|
||||
'';
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue