From 9e1834f1a5dc3ad93368786905a211bb2076d1cb Mon Sep 17 00:00:00 2001 From: khaneliman Date: Wed, 24 Sep 2025 21:12:21 +0000 Subject: [PATCH] deploy: 2e260431fca7a782e0d0591985f2040944b43541 --- options.xhtml | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) diff --git a/options.xhtml b/options.xhtml index 43a815f96..334a3f90f 100644 --- a/options.xhtml +++ b/options.xhtml @@ -16863,6 +16863,98 @@ list of package

+
+ + programs.aiac.enable + + +
+
+

Whether to enable aiac.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The aiac package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.aiac

+ +

Declared by:

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

Configuration settings for aiac. All the available options can be found here: +https://github.com/gofireflyio/aiac/?tab=readme-ov-file#configuration.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  backends = {
+    localhost = {
+      type = "ollama";
+      url = "http://localhost:11434/api";
+    };
+    official_openai = {
+      api_key = "API KEY";
+      default_model = "gpt-4o";
+      type = "openai";
+    };
+  };
+  default_backend = "official_openai";
+}
+
+ +

Declared by:

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