Codex icon

Codex 0.76.0

OpenAI's coding agent that runs in your terminal

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    codex # Codex
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    codex # Codex
  ];
}

Package Definition

{
  "pname": "codex",
  "version": "0.76.0",
  "src": {
    "url": "https://github.com/openai/codex/releases/download/rust-v0.76.0/codex-aarch64-apple-darwin.tar.gz",
    "sha256": "efae1df84a0e1b65b94d2e6d62e6c7473bcf4fa4591d89c9f142dbc8c80a1fd0"
  },
  "installPhase": [
    "mkdir -p \"$out/bin\" && ln -s \"codex-aarch64-apple-darwin\" \"$out/bin/codex\""
  ],
  "meta": {
    "description": "OpenAI's coding agent that runs in your terminal",
    "homepage": "https://github.com/openai/codex"
  }
}