mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-27 20:01:29 +01:00
17 lines
276 B
Nix
17 lines
276 B
Nix
{ pkgs, pkgs-master, ... }:
|
|
{
|
|
home.packages =
|
|
with pkgs;
|
|
[
|
|
mitmproxy # http/https proxy tool
|
|
wireshark # network analyzer
|
|
]
|
|
# AI Agent Tools
|
|
++ (with pkgs-master; [
|
|
cursor-cli
|
|
claude-code
|
|
gemini-cli
|
|
opencode
|
|
]);
|
|
}
|