feat(nixos): add cursor-cli/claude-code/gemini-cli/opencode

This commit is contained in:
Ryan Yin
2026-03-24 12:19:56 +08:00
parent 914239487c
commit f373f5ee5b
4 changed files with 42 additions and 25 deletions

View File

@@ -1,19 +1,16 @@
{ pkgs, ... }:
{ pkgs, pkgs-master, ... }:
{
home.packages =
with pkgs;
[
mitmproxy # http/https proxy tool
wireshark # network analyzer
# IDEs
# jetbrains.idea-community
# AI cli tools
k8sgpt
kubectl-ai # an ai helper opensourced by google
]
++ (lib.optionals pkgs.stdenv.isx86_64 [
insomnia # REST client
# AI Agent Tools
++ (with pkgs-master; [
cursor-cli
claude-code
gemini-cli
opencode
]);
}