From 1f9146d659d8fa4dac82c92003e2563c5d6040de Mon Sep 17 00:00:00 2001
From: khaneliman
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