From 5d699639c1a93d15b7326fabe2fc79f665b396f2 Mon Sep 17 00:00:00 2001 From: rycee Date: Sun, 1 Dec 2024 19:38:21 +0000 Subject: [PATCH] deploy: 863273505016a1e88e4ffaec48d1b767104c5652 --- options.xhtml | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) diff --git a/options.xhtml b/options.xhtml index b27b57964..e1dbcd471 100644 --- a/options.xhtml +++ b/options.xhtml @@ -32718,6 +32718,115 @@ null or attribute sets or lists of strings

+
+ + programs.kubecolor.enable + + +
+
+

Whether to enable kubecolor - Colorize your kubectl output.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/kubecolor.nix> + +
+
+
+ + programs.kubecolor.enableAlias + + +
+
+

When set to true, it will create an alias for kubectl pointing to +kubecolor, thus making kubecolor the default kubectl client.

+ +

Type: +boolean

+ +

Default: +false

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/kubecolor.nix> + +
+
+
+ + programs.kubecolor.package + + +
+
+

The kubecolor package to use.

+ +

Type: +package

+ +

Default: +pkgs.kubecolor

+ +

Declared by:

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

Configuration written to ~/.kube/color.yaml (Linux) +or Library/Application Support/kube/color.yaml (Darwin). +See https://kubecolor.github.io/reference/config/ for supported +values.

+ +

Type: +YAML value

+ +

Default: +{ }

+ +

Example:

kubectl = lib.getExe pkgs.kubectl
+preset = "dark";
+paging = "auto";
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/kubecolor.nix> + +
+
programs.lazygit.enable