Skip to content
This repository was archived by the owner on Jul 6, 2026. It is now read-only.

rodeyseijkens/t3code-nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ This repo is archived. T3 Code is now available in the official nixpkgs repository.

📦 Install directly: t3code on nixpkgs

T3 Code for NixOS

Unofficial Nix package for T3 Code - a minimal web GUI for coding agents.

Installation

NixOS (Recommended)

Add the flake input and import the module:

{
  inputs = {
    t3code = {
      url = "github:rodeyseijkens/t3code-nix";
      inputs.nixpkgs.follows = "nixpkgs";
    }
  };

  outputs = { self, nixpkgs, t3code, ... }: {
    nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
      modules = [
        t3code.nixosModules.default
        # ... your other modules
      ];
    };
  };
}

The module automatically:

  • Enables AppImage support (programs.appimage.*)
  • Adds t3code to system packages

Home Manager

{
  inputs = {
    t3code = {
      url = "github:rodeyseijkens/t3code-nix";
      inputs.nixpkgs.follows = "nixpkgs";
    }
  };

  outputs = { self, nixpkgs, t3code, ... }: {
    homeConfigurations.myhost = home-manager.lib.homeManagerConfiguration {
      modules = [{
        home.packages = [
          t3code.packages.x86_64-linux.default
        ];
      }];
    };
  };
}

Direct Run (no install)

nix run github:rodeyseijkens/t3code-nix --impure

Imperative Install

nix profile install github:rodeyseijkens/t3code-nix --impure

Features

  • Minimal web GUI for coding agents
  • Built on Codex CLI
  • Cross-platform (Windows, macOS, Linux)
  • AppImage integrated as first-class citizen with desktop entry and icons

Update Package

Maintainers can update to the latest version:

./update.sh

License

The Nix packaging is MIT. T3 Code itself is proprietary software.

Links

About

No description, website, or topics provided.

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors