mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-30 06:11:52 +02:00
18 lines
288 B
Nix
18 lines
288 B
Nix
{ pkgs, pkgs-master, ... }:
|
|
{
|
|
home.packages =
|
|
with pkgs;
|
|
[
|
|
mitmproxy # http/https proxy tool
|
|
wireshark # network analyzer
|
|
]
|
|
# AI Agent Tools
|
|
++ (with pkgs-master; [
|
|
codex
|
|
cursor-cli
|
|
claude-code
|
|
gemini-cli
|
|
opencode
|
|
]);
|
|
}
|