nixos-dotfiles/home/seanomik/k8s-tools.nix

22 lines
521 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
home-manager.users.seanomik.home.packages = with pkgs; [
kubectl kubernetes-helm kustomize fluxcd kustomize-sops sops
];
2024-05-05 18:53:09 +00:00
home-manager.users.seanomik.home = {
sessionVariables = {
KUBE_EDITOR = "vim";
EDITOR = "vim";
};
shellAliases = {
k = "kubectl";
kg = "kubectl get";
kgpo = "kubectl get pod";
krm = "kubectl delete";
kgwf = "kubectl get --watch -f";
kn = "kubectl config set-context --current --namespace";
};
};
}