summaryrefslogtreecommitdiff
path: root/modules/services/khd
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/services/khd
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/khd')
-rw-r--r--modules/services/khd/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/services/khd/default.nix b/modules/services/khd/default.nix
index ef16a2b..7594baf 100644
--- a/modules/services/khd/default.nix
+++ b/modules/services/khd/default.nix
@@ -13,27 +13,27 @@ in
services.khd.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable the khd hotkey daemon.";
+ description = "Whether to enable the khd hotkey daemon.";
};
services.khd.package = mkOption {
type = types.package;
default = pkgs.khd;
defaultText = "pkgs.khd";
- description = lib.mdDoc "This option specifies the khd package to use.";
+ description = "This option specifies the khd package to use.";
};
services.khd.khdConfig = mkOption {
type = types.lines;
default = "";
example = "alt + shift - r : kwmc quit";
- description = lib.mdDoc "Config to use for {file}`khdrc`.";
+ description = "Config to use for {file}`khdrc`.";
};
services.khd.i3Keybindings = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Wether to configure i3 style keybindings for kwm.";
+ description = "Wether to configure i3 style keybindings for kwm.";
};
};