fix(modules): fixed typos in various modules (#1672)
Some checks failed
Test / test-stable (push) Has been cancelled
Test / install-against-stable (push) Has been cancelled
Test / install-flake (push) Has been cancelled
Update website / Build (push) Has been cancelled
Update website / Deploy (push) Has been cancelled

This commit is contained in:
Sam 2025-12-29 17:10:40 +00:00 committed by GitHub
commit c31afa6e76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -88,7 +88,7 @@ in
description = '' description = ''
Shell script code called during global environment initialisation Shell script code called during global environment initialisation
after all variables and profileVariables have been set. after all variables and profileVariables have been set.
This code is asumed to be shell-independent, which means you should This code is assumed to be shell-independent, which means you should
stick to pure sh without sh word split. stick to pure sh without sh word split.
''; '';
}; };

View file

@ -22,7 +22,7 @@ in {
]; ];
options.services.jankyborders = { options.services.jankyborders = {
enable = mkEnableOption "Enable the jankyborders service."; enable = mkEnableOption "the jankyborders service.";
package = mkPackageOption pkgs "jankyborders" {}; package = mkPackageOption pkgs "jankyborders" {};

View file

@ -33,7 +33,7 @@ in
services.khd.i3Keybindings = mkOption { services.khd.i3Keybindings = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
description = "Wether to configure i3 style keybindings for kwm."; description = "Whether to configure i3 style keybindings for kwm.";
}; };
}; };

View file

@ -22,7 +22,7 @@ in
services.spacebar.enable = mkOption { services.spacebar.enable = mkOption {
type = bool; type = bool;
default = false; default = false;
description = "Whether to enable the spacebar spacebar."; description = "Whether to enable the spacebar.";
}; };
services.spacebar.package = mkOption { services.spacebar.package = mkOption {

View file

@ -83,7 +83,7 @@ let
preDown = mkOption { preDown = mkOption {
type = with types; coercedTo (listOf str) (concatStringsSep "\n") lines; type = with types; coercedTo (listOf str) (concatStringsSep "\n") lines;
default = ""; default = "";
description = "List of commadns to run before interface shutdown."; description = "List of commands to run before interface shutdown.";
}; };
preUp = mkOption { preUp = mkOption {