fix: shoukei - filter packages that do not support aarch64

This commit is contained in:
Ryan Yin
2025-07-13 02:17:12 +08:00
parent 264611e334
commit 710ddc3263
5 changed files with 92 additions and 79 deletions

View File

@@ -3,17 +3,20 @@
nur-ryan4yin,
...
}: {
home.packages = with pkgs; [
mitmproxy # http/https proxy tool
insomnia # REST client
wireshark # network analyzer
home.packages = with pkgs;
[
mitmproxy # http/https proxy tool
wireshark # network analyzer
# IDEs
# jetbrains.idea-community
# IDEs
# jetbrains.idea-community
# AI cli tools
nur-ryan4yin.packages.${pkgs.system}.gemini-cli
k8sgpt
kubectl-ai # an ai helper opensourced by google
];
# AI cli tools
nur-ryan4yin.packages.${pkgs.system}.gemini-cli
k8sgpt
kubectl-ai # an ai helper opensourced by google
]
++ (lib.optionals pkgs.stdenv.isx86_64 [
insomnia # REST client
]);
}