treewide: fix spelling errors
Some checks failed
/ triage (push) Has been cancelled
GitHub Pages / publish (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
luo jiyin 2026-03-12 11:32:16 +08:00 committed by GitHub
parent 45fe5c9854
commit 7d06e0cefe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 21 additions and 21 deletions

View file

@ -49,7 +49,7 @@ This release has the following notable changes:
- By default, Home Manager imports all modules, which leads to
increased evaluation time. Some users may wish to only import the
modules they actually use. To accomodate this, a new option
modules they actually use. To accommodate this, a new option
`home-manager.minimal` has been added. When this option is enabled,
Home Manager will only import the basic set of modules it requires
to function. Other modules will have to be enabled manually, like

View file

@ -168,7 +168,7 @@ in
will enable x11 cursor configurations.
Note that this will merely generate the cursor configurations.
To apply the configurations, the relevant subsytems must also be configured.
To apply the configurations, the relevant subsystems must also be configured.
For example, [](#opt-home.pointerCursor.gtk.enable) will generate
the gtk cursor configuration, but [](#opt-gtk.enable) needs
to be set for it to be applied.

View file

@ -278,7 +278,7 @@ in
multiple keys are provided, launchd ORs them, thus providing maximum flexibility to the job to refine
the logic and stall if necessary. If launchd finds no reason to restart the job, it falls back on
demand based invocation. Jobs that exit quickly and frequently when configured to be kept alive will
be throttled to converve system resources.
be throttled to conserve system resources.
'';
};

View file

@ -97,7 +97,7 @@ in
If `false` (the default) then the target
will be a symbolic link to the source directory. If
`true` then the target will be a
directory structure matching the source's but whose leafs
directory structure matching the source's but whose leaves
are symbolic links to the files of the source directory.
'';
};

View file

@ -2,7 +2,7 @@
time = "2025-10-11T00:06:01+00:00";
condition = true;
message = ''
A new option is availabe: `home-manager.minimal`
A new option is available: `home-manager.minimal`
By default, Home Manager imports all modules, which leads to increased
evaluation time. Some users may wish to only import the modules they

View file

@ -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;
}
}

View file

@ -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.
'';
};
};

View file

@ -81,7 +81,7 @@ in
{
__config__ = {
oldver = "my_custom_oldver.json";
newver = "~/seperately_placed_newver.json";
newver = "~/separately_placed_newver.json";
keyfile = "keyfile.toml";
};

View file

@ -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;
};

View file

@ -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;

View file

@ -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.
'';
};

View file

@ -57,7 +57,7 @@ in
extraDescription = "Used in various ways by colima.";
};
curlPackage = lib.mkPackageOption pkgs "curl" {
extraDescription = "Used by colima to donwload images.";
extraDescription = "Used by colima to download images.";
};
bashPackage = lib.mkPackageOption pkgs "bashNonInteractive" {
extraDescription = "Used by colima's internal scripts.";

View file

@ -28,7 +28,7 @@ in
type = jsonFormat.type;
default = { };
description = ''
Configuration settings for hyprshell. All the avaiblable
Configuration settings for hyprshell. All the available
options can be found here: <https://github.com/H3rmt/hyprshell/blob/hyprshell-release/docs/CONFIGURE.md#config-options>
'';
};

View file

@ -272,7 +272,7 @@ in
default = [ ];
description = ''
Ordered list of directives.
See kanshi(5) for informations.
See kanshi(5) for information.
'';
example = literalExpression ''
[

View file

@ -59,7 +59,7 @@ in
type = lib.types.bool;
default = true;
description = ''
Whether to completly enable or disable the crash recovery feature.
Whether to completely enable or disable the crash recovery feature.
'';
};

View file

@ -38,7 +38,7 @@ let
# required.
then
"--unix-socket ${cfg.guiAddress} http://.${path}"
# no adjustements are needed if cfg.guiAddress is a network address
# no adjustments are needed if cfg.guiAddress is a network address
else
"${cfg.guiAddress}${path}";

View file

@ -148,7 +148,7 @@ in
description = ''
Whether to enable Vulkan in nixGL wrappers.
This is disabled by default bacause Vulkan brings in several libraries
This is disabled by default because Vulkan brings in several libraries
that can cause symbol version conflicts in wrapped programs. Your
mileage may vary.
'';

View file

@ -115,7 +115,7 @@ let
if overlays == [ ] then
scrubbedPkgs
else
builtins.traceVerbose "eval overlayed nixpkgs" (lib.foldr (o: p: p.extend o) scrubbedPkgs overlays);
builtins.traceVerbose "eval overlaid nixpkgs" (lib.foldr (o: p: p.extend o) scrubbedPkgs overlays);
in
lib.mkImageMediaOverride stubbedPkgs;
};