Add to your flake.nix:
inputs.dotfiles.url = "github:aspiand/dotfiles";All packages at once:
{
nixpkgs.overlays = [ inputs.dotfiles.overlays.default ];
environment.systemPackages = with pkgs; [ codegraph hanabi 9router openhuman ];
}Or individually:
{
nixpkgs.overlays = [ inputs.dotfiles.overlays.codegraph ];
environment.systemPackages = [ pkgs.codegraph ];
}{
home.packages = [ inputs.dotfiles.packages.${pkgs.system}.codegraph ];
}| Package | Source Repository | Note |
|---|---|---|
| Codegraph | colbymchenry/codegraph | Pre-indexed code knowledge graph. |
| Hanabi | jeffshee/gnome-ext-hanabi | GNOME Video Wallpaper. |
| OpenHuman | tinyhumansai/openhuman | Personal AI super intelligence. |
| 9router | decolua/9router | Unlimited FREE AI coding router. |
Using the Binary Cache:
- Set yourself as
trusted-users(see docs/R2_CACHE_GUIDE.md) to use the flake's built-in Nix binary cache automatically. - Cache operations: CACHE_REPORT.md — generate report, clean packages, run GC.