Files
nix-config-ryan4yin/home/base/gui/dev-tools.nix
T
2026-05-20 16:15:48 +08:00

21 lines
404 B
Nix

{ pkgs, llm-agents, ... }:
{
home.packages =
with pkgs;
[
mitmproxy # http/https proxy tool
wireshark # network analyzer
]
# AI Agent Tools
++ (with llm-agents.packages.${pkgs.stdenv.hostPlatform.system}; [
# Agents
codex
cursor-cli
claude-code
opencode
# Utilities
rtk # CLI proxy that reduces LLM token consumption
]);
}