diff --git a/nixos/code.nix b/nixos/code.nix index 174b875e..8d865465 100644 --- a/nixos/code.nix +++ b/nixos/code.nix @@ -10,7 +10,6 @@ makeEnable config "myModules.code" true { antigravity claude-code codex - codex-desktop gemini-cli happy-coder opencode diff --git a/nixos/flake.lock b/nixos/flake.lock index dce14f6b..141d5f30 100644 --- a/nixos/flake.lock +++ b/nixos/flake.lock @@ -186,29 +186,6 @@ "type": "github" } }, - "codex-desktop-linux": { - "inputs": { - "flake-utils": [ - "flake-utils" - ], - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1777351752, - "narHash": "sha256-kwdZPCidd9kPYASk6fUPcDfg2uDQ9NzwtYqLlwwzFVk=", - "owner": "ilysenko", - "repo": "codex-desktop-linux", - "rev": "40fd7a8bd6f229e23194881b972fddb2dc42c4c8", - "type": "github" - }, - "original": { - "owner": "ilysenko", - "repo": "codex-desktop-linux", - "type": "github" - } - }, "coqui-tts-streamer": { "inputs": { "flake-utils": [ @@ -2151,7 +2128,6 @@ "caelestia-shell": "caelestia-shell", "claude-code-nix": "claude-code-nix", "codex-cli-nix": "codex-cli-nix", - "codex-desktop-linux": "codex-desktop-linux", "coqui-tts-streamer": "coqui-tts-streamer", "flake-utils": "flake-utils", "git-blame-rank": "git-blame-rank", diff --git a/nixos/flake.nix b/nixos/flake.nix index 3509327a..d95e060e 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -218,14 +218,6 @@ }; }; - codex-desktop-linux = { - url = "github:ilysenko/codex-desktop-linux"; - inputs = { - nixpkgs.follows = "nixpkgs"; - flake-utils.follows = "flake-utils"; - }; - }; - claude-code-nix = { url = "github:sadjow/claude-code-nix"; inputs = { diff --git a/nixos/nix.nix b/nixos/nix.nix index 3fd56f7e..4170fd3e 100644 --- a/nixos/nix.nix +++ b/nixos/nix.nix @@ -111,28 +111,6 @@ # Use codex and claude-code from dedicated flakes with cachix (final: prev: { codex = inputs.codex-cli-nix.packages.${prev.stdenv.hostPlatform.system}.default; - codex-desktop-installer = inputs.codex-desktop-linux.packages.${prev.stdenv.hostPlatform.system}.default; - codex-desktop = final.writeShellApplication { - name = "codex-desktop"; - runtimeInputs = [ - final.codex - final.codex-desktop-installer - final.coreutils - final.python3 - ]; - text = '' - install_root="''${CODEX_DESKTOP_HOME:-''${XDG_DATA_HOME:-$HOME/.local/share}/codex-desktop-linux}" - install_dir="''${CODEX_INSTALL_DIR:-$install_root/codex-app}" - - if [ ! -x "$install_dir/start.sh" ]; then - mkdir -p "$install_root" - CODEX_INSTALL_DIR="$install_dir" codex-desktop-installer - fi - - export CODEX_CLI_PATH="''${CODEX_CLI_PATH:-$(command -v codex)}" - exec "$install_dir/start.sh" "$@" - ''; - }; claude-code = inputs.claude-code-nix.packages.${prev.stdenv.hostPlatform.system}.default; git-sync-rs = inputs.git-sync-rs.packages.${prev.stdenv.hostPlatform.system}.default; })