add more general utilities

This commit is contained in:
Noah Masur
2022-09-21 16:58:04 -04:00
parent 6281e32275
commit 7a9f7dd760
3 changed files with 13 additions and 4 deletions

View File

@ -2,7 +2,13 @@
home-manager.users.${config.user} = {
home.packages = with pkgs; [ kubectl k9s ];
home.packages = with pkgs; [
kubectl # Basic Kubernetes queries
k9s # Terminal Kubernetes UI
kubernetes-helm # Helm CLI
fluxcd # Bootstrap clusters with Flux
kustomize # Kustomize CLI (for Flux)
];
programs.fish.shellAbbrs = {
k = "kubectl";