mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-27 03:08:38 +02:00
feat: install ai agents via llm-agents.nix
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ pkgs, pkgs-master, ... }:
|
||||
{ pkgs, llm-agents, ... }:
|
||||
{
|
||||
home.packages =
|
||||
with pkgs;
|
||||
@@ -7,11 +7,15 @@
|
||||
wireshark # network analyzer
|
||||
]
|
||||
# AI Agent Tools
|
||||
++ (with pkgs-master; [
|
||||
++ (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
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user