dotfiles/home/apps/kubernetes.nix

35 lines
523 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
konf
kubeconform
kubectl
kubectx
2023-03-30 04:29:33 +02:00
kubepug
kubernetes-helm
2023-03-30 04:29:33 +02:00
minikube
popeye
pv-migrate
velero
];
home.shellAliases = {
jq = "gojq";
kcuc = "konf set";
kcn = "konf ns";
};
home.sessionVariables = {
2023-02-10 07:46:37 +01:00
KREW_ROOT = "${config.xdg.dataHome}/krew";
KUBECACHEDIR = "${config.xdg.cacheHome}/kube";
MINIKUBE_HOME = "${config.xdg.dataHome}/minikube";
};
}