Codex icon

Codex 0.50.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.50.0",
  "src": {
    "url": "https://github.com/openai/codex/releases/download/rust-v0.50.0/codex-aarch64-apple-darwin.tar.gz",
    "sha256": "9b8c723e456476b3394af3df7b3dc9826be76af137399958dc686cd5c9b68ffe"
  },
  "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"
  }
}