Skip to content

farwydi/rtk-nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rtk-nix

NixOS package for rtk — high-performance CLI proxy to minimize LLM token consumption.

Uses pre-built binaries from GitHub releases.

Usage

Standalone

nix-build -E 'with import <nixpkgs> {}; callPackage ./package.nix {}'
./result/bin/rtk --version

Home Manager

let
  rtk = pkgs.callPackage /path/to/rtk-nix/package.nix {};
in {
  home.packages = [ rtk ];
}

Flake

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    rtk-nix.url = "github:farwydi/rtk-nix";
  };

  outputs = { nixpkgs, rtk-nix, ... }: {
    # use rtk-nix.packages.x86_64-linux.default
  };
}

Update

./update.sh          # latest release
./update.sh v0.40.0  # specific version

About

NixOS package for rtk — high-performance CLI proxy to minimize LLM token consumption

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors