mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-31 22:53:06 +02:00
22 lines
421 B
Nix
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
|
|
]);
|
|
}
|