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/