Files
nix-config/home/base/gui/dev-tools.nix
T
2026-07-17 10:39:53 +08:00

22 lines
420 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
kimi-code
# Utilities
rtk # CLI proxy that reduces LLM token consumption
]);
}