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