1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{pkgs, ...}: { imports = [ ./k9s.nix ]; home.packages = with pkgs; [ (google-cloud-sdk.withExtraComponents [google-cloud-sdk.components.gke-gcloud-auth-plugin]) helmfile kubectl kubectx kubent stern (wrapHelm kubernetes-helm { plugins = with pkgs.kubernetes-helmPlugins; [ helm-diff ]; }) ]; }