diff --git a/options.xhtml b/options.xhtml index 7e0c354ae..fca06b0e8 100644 --- a/options.xhtml +++ b/options.xhtml @@ -20895,6 +20895,127 @@ strings concatenated with ā€œ\nā€

+
+ + programs.codex.enable + + +
+
+

Whether to enable Lightweight coding agent that runs in your terminal.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The codex package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.codex

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/codex.nix> + +
+
+
+ + programs.codex.custom-instructions + + +
+
+

Define custom guidance for the agents; this value is written to {file}~/.codex/AGENTS.md

+ +

Type: +strings concatenated with ā€œ\nā€

+ +

Default: +""

+ +

Example:

''
+  - Always respond with emojis
+  - Only use git commands when explicitly requested
+''
+
+
+ +

Declared by:

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

Configuration written to ~/.codex/config.yaml. +See https://github.com/openai/codex#configuration-guide for supported values.

+ +

Type: +YAML value

+ +

Default: +{ }

+ +

Example:

{
+  model = "gemma3:latest";
+  provider = "ollama";
+  providers = {
+    ollama = {
+      name = "Ollama";
+      baseURL = "http://localhost:11434/v1";
+      envKey = "OLLAMA_API_KEY";
+    };
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/codex.nix> + +
+
programs.command-not-found.enable