summaryrefslogtreecommitdiff
path: root/modules/services/chunkwm.nix
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/chunkwm.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/chunkwm.nix')
-rw-r--r--modules/services/chunkwm.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/services/chunkwm.nix b/modules/services/chunkwm.nix
index a5955cc..354288a 100644
--- a/modules/services/chunkwm.nix
+++ b/modules/services/chunkwm.nix
@@ -12,51 +12,51 @@ in
services.chunkwm.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to enable the chunkwm window manager.";
+ description = "Whether to enable the chunkwm window manager.";
};
services.chunkwm.package = mkOption {
type = types.package;
example = literalExpression "pkgs.chunkwm";
- description = lib.mdDoc "This option specifies the chunkwm package to use.";
+ description = "This option specifies the chunkwm package to use.";
};
services.chunkwm.hotload = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc "Whether to enable hotload.";
+ description = "Whether to enable hotload.";
};
services.chunkwm.extraConfig = mkOption {
type = types.lines;
default = "";
example = ''chunkc tiling::rule --owner Emacs --state tile'';
- description = lib.mdDoc "Additional commands for {file}`chunkwmrc`.";
+ description = "Additional commands for {file}`chunkwmrc`.";
};
services.chunkwm.plugins.dir = mkOption {
type = types.path;
default = "/run/current-system/sw/lib/chunkwm/plugins";
- description = lib.mdDoc "Chunkwm Plugins directory.";
+ description = "Chunkwm Plugins directory.";
};
services.chunkwm.plugins.list = mkOption {
type = types.listOf (types.enum plugins);
default = plugins;
example = ["tiling"];
- description = lib.mdDoc "Chunkwm Plugins to enable.";
+ description = "Chunkwm Plugins to enable.";
};
services.chunkwm.plugins."border".config = mkOption {
type = types.lines;
default = ''chunkc set focused_border_color 0xffc0b18b'';
- description = lib.mdDoc "Optional border plugin configuration.";
+ description = "Optional border plugin configuration.";
};
services.chunkwm.plugins."tiling".config = mkOption {
type = types.lines;
example = ''chunkc set global_desktop_mode bsp'';
- description = lib.mdDoc "Optional tiling plugin configuration.";
+ description = "Optional tiling plugin configuration.";
};
};