diff --git a/options.xhtml b/options.xhtml index 44b0f483e..7f79227cd 100644 --- a/options.xhtml +++ b/options.xhtml @@ -37875,6 +37875,181 @@ disable_tools = ["node"]; +
+ + programs.mods.enable + + +
+
+

Whether to enable mods.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

Whether to enable Bash integration.

+ +

Type: +boolean

+ +

Default: +home.shell.enableBashIntegration

+ +

Example: +false

+ +

Declared by:

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

Whether to enable Fish integration.

+ +

Type: +boolean

+ +

Default: +home.shell.enableFishIntegration

+ +

Example: +false

+ +

Declared by:

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

Whether to enable Zsh integration.

+ +

Type: +boolean

+ +

Default: +home.shell.enableZshIntegration

+ +

Example: +false

+ +

Declared by:

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

The mods package to install

+ +

Type: +package

+ +

Default: +pkgs.mods

+ +

Declared by:

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

Configuration written to +$XDG_CONFIG_HOME/mods/mods.yml.

See https://github.com/charmbracelet/mods/blob/main/config_template.yml for the full +list of options.

+ +

Type: +YAML value

+ +

Default: +{ }

+ +

Example:

''
+  {
+    default-model = "llama3.2";
+    apis = {
+      ollama = {
+        base-url = "http://localhost:11434/api";
+        models = {
+          "llama3.2" = {
+            max-input-chars = 650000;
+          };
+        };
+      };
+    };
+  }
+''
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/mods.nix> + +
+
programs.mpv.enable