Files
nix-config/home/base/gui/dev-tools.nix
T
2026-08-07 14:15:26 +08:00

24 lines
519 B
Nix

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