From 1f9146d659d8fa4dac82c92003e2563c5d6040de Mon Sep 17 00:00:00 2001 From: khaneliman Date: Wed, 4 Jun 2025 18:36:30 +0000 Subject: [PATCH] deploy: 86b95fc1ed2b9b04a451a08ccf13d78fb421859c --- options.xhtml | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) diff --git a/options.xhtml b/options.xhtml index a9ce6ef75..31e7d9622 100644 --- a/options.xhtml +++ b/options.xhtml @@ -14208,6 +14208,105 @@ strings concatenated with ā€œ\nā€

+
+ + programs.aichat.enable + + +
+
+

Whether to enable aichat, an All-in-one LLM CLI tool.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The aichat package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.aichat

+ +

Declared by:

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

Configuration written to +$XDG_CONFIG_HOME/aichat/config.yaml +on Linux or on Darwin if xdg.enable is set, otherwise +~/Library/Application Support/aichat/config.yaml. +See +https://github.com/sigoden/aichat/blob/main/config.example.yaml +for supported values.

+ +

Type: +YAML value

+ +

Default: +{ }

+ +

Example:

{
+  model = "Ollama:mistral-small:latest";
+  clients = [
+    {
+      type = "openai-compatible";
+      name = "Ollama";
+      api_base = "http://localhost:11434/v1";
+      models = [
+        {
+          name = "llama3.2:latest";
+        }
+      ];
+    }
+  ];
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/aichat.nix> + +
+
programs.alacritty.enable