Files
nix-config/home/base/gui/dev-tools.nix
2026-03-31 19:42:11 +08:00

22 lines
421 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
gemini-cli
opencode
# Utilities
rtk # CLI proxy that reduces LLM token consumption
]);
}