mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-05-21 14:06:51 +02:00
21 lines
404 B
Nix
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
|
|
]);
|
|
}
|