feat: install ai agents via llm-agents.nix

This commit is contained in:
Ryan Yin
2026-03-31 19:25:21 +08:00
parent 6885c48513
commit 910b9f322d
3 changed files with 187 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, pkgs-master, ... }:
{ pkgs, llm-agents, ... }:
{
home.packages =
with pkgs;
@@ -7,11 +7,15 @@
wireshark # network analyzer
]
# AI Agent Tools
++ (with pkgs-master; [
++ (with llm-agents.packages.${pkgs.stdenv.hostPlatform.system}; [
# Agents
codex
cursor-cli
claude-code
gemini-cli
opencode
# Utilities
rtk # CLI proxy that reduces LLM token consumption
]);
}