fix(modules): fixed typos in various modules

This commit is contained in:
Nikita Lenyk 2025-12-29 18:31:13 +02:00
parent f0c8e1f6fe
commit 8cecf9c5c5
5 changed files with 5 additions and 5 deletions

View file

@ -88,7 +88,7 @@ in
description = ''
Shell script code called during global environment initialisation
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.
'';
};

View file

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

View file

@ -33,7 +33,7 @@ in
services.khd.i3Keybindings = mkOption {
type = types.bool;
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 {
type = bool;
default = false;
description = "Whether to enable the spacebar spacebar.";
description = "Whether to enable the spacebar.";
};
services.spacebar.package = mkOption {

View file

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