mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:54:28 +01:00
18 lines
351 B
Nix
18 lines
351 B
Nix
{pkgs, ...}: {
|
|
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
|
|
]);
|
|
}
|