From 7cc14c08ab4104ba2597a55350741ab47b6e6d32 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Thu, 4 Sep 2025 02:50:56 +0000 Subject: [PATCH] deploy: b21c1a61a765acea932eef1e4d225fde25a166e0 --- options.xhtml | 268 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 268 insertions(+) diff --git a/options.xhtml b/options.xhtml index 3d45fc5ca..b5cc2b7b0 100644 --- a/options.xhtml +++ b/options.xhtml @@ -75208,6 +75208,274 @@ list of package

+
+ + programs.vivid.enable + + +
+
+

Whether to enable vivid.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.enableBashIntegration + + +
+
+

Whether to enable Bash integration.

+ +

Type: +boolean

+ +

Default: +home.shell.enableBashIntegration

+ +

Example: +false

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.enableFishIntegration + + +
+
+

Whether to enable Fish integration.

+ +

Type: +boolean

+ +

Default: +home.shell.enableFishIntegration

+ +

Example: +false

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.enableZshIntegration + + +
+
+

Whether to enable Zsh integration.

+ +

Type: +boolean

+ +

Default: +home.shell.enableZshIntegration

+ +

Example: +false

+ +

Declared by:

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

The vivid package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.vivid

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.activeTheme + + +
+
+

Active theme for vivid.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"molokai"

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.colorMode + + +
+
+

Color mode for vivid.

+ +

Type: +null or string

+ +

Default: +null

+ +

Example: +"8-bit"

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.filetypes + + +
+
+

Filetype database for vivid. You can find an example config at: +https://github.com/sharkdp/vivid/blob/master/config/filetypes.yml.

+ +

Type: +YAML 1.1 value

+ +

Default: +{ }

+ +

Example:

{
+  text = {
+    licenses = [
+      "LICENCE"
+      "COPYRIGHT"
+    ];
+    special = [
+      "CHANGELOG.md"
+      "CODE_OF_CONDUCT.md"
+      "CONTRIBUTING.md"
+    ];
+    todo = [
+      "TODO.md"
+      "TODO.txt"
+    ];
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
+
+ + programs.vivid.themes + + +
+
+

Theme for vivid

+ +

Type: +attribute set of absolute path

+ +

Default: +{ }

+ +

Example:

{
+  ayu = builtins.fetchurl {
+    url = "https://raw.githubusercontent.com/NearlyTRex/Vivid/refs/heads/master/themes/ayu.yml";
+    hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
+  };
+
+  mocha = builtins.fetchurl {
+    url = "https://raw.githubusercontent.com/NearlyTRex/Vivid/refs/heads/master/themes/catppuccin-mocha.yml";
+    hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/vivid.nix> + +
+
programs.vscode.enable