dotfiles/home/apps/kubernetes.nix

28 lines
473 B
Nix
Raw Normal View History

{
2023-02-10 07:46:37 +01:00
config,
pkgs,
...
}: {
home.packages = with pkgs.unstable; [
cmctl
dyff
gojq
jqp
kubectl
kubectx
kubernetes-helm
popeye
pv-migrate
velero
];
home.shellAliases.jq = "gojq";
home.sessionVariables = {
2023-02-10 07:46:37 +01:00
KREW_ROOT = "${config.xdg.dataHome}/krew";
KUBECACHEDIR = "${config.xdg.cacheHome}/kube";
KUBECONFIG = "${config.xdg.configHome}/kube/config";
MINIKUBE_HOME = "${config.xdg.dataHome}/minikube";
};
}