You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
407 B
Nix

{
config,
pkgs,
...
}: {
home.packages = with pkgs; [
(wrapHelm kubernetes-helm {plugins = [kubernetes-helmPlugins.helm-diff];})
kubectl
kubectx
kubeseal
krew
];
home.sessionPath = [
"${config.home.sessionVariables.KREW_ROOT}/bin"
];
home.sessionVariables = {
KREW_ROOT = "${config.xdg.dataHome}/krew";
KUBECACHEDIR = "${config.xdg.cacheHome}/kube";
};
}