From 75bd3f309c6fab7e669ec07256d727fb34ed2883 Mon Sep 17 00:00:00 2001 From: teto Date: Wed, 1 Nov 2023 17:41:08 +0000 Subject: [PATCH] deploy: fc2a8842ea5106640eb89ec522dde9120df82d8a --- options.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/options.html b/options.html index e52d8ecd8..5ff73506a 100644 --- a/options.html +++ b/options.html @@ -6133,6 +6133,24 @@ boolean

Default: package

Default: pkgs.k9s

Declared by:

<home-manager/modules/programs/k9s.nix> +
programs.k9s.hotkey

hotkeys written to +$XDG_CONFIG_HOME/k9s/hotkey.yml. See +https://k9scli.io/topics/hotkeys/ +for supported values.

Type: +YAML value

Default: +{ }

Example:

hotkey = {
+  # Make sure this is camel case
+  hotKey = {
+    shift-0 = {
+      shortCut = "Shift-0";
+      description = "Viewing pods";
+      command = "pods";
+    };
+  };
+};
+
+

Declared by:

+<home-manager/modules/programs/k9s.nix>
programs.k9s.settings

Configuration written to $XDG_CONFIG_HOME/k9s/config.yml. See https://k9scli.io/topics/config/