mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 22:30:25 +01:00
20 lines
357 B
Nix
20 lines
357 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
|
|
]);
|
|
}
|