feat: move kubectl to home manager and add alias

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-10-23 09:29:39 +02:00
parent 2d98455fdd
commit 6a0be481e1
Signed by: lander
GPG key ID: 0142722B4B0C536F
3 changed files with 14 additions and 2 deletions

View file

@ -5,6 +5,7 @@
./ghostty.nix ./ghostty.nix
./go.nix ./go.nix
./irssi.nix ./irssi.nix
./k8s.nix
#./mail.nix #./mail.nix
]; ];
} }

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
kubectl
kubectx
];
programs.zsh.shellAliases = {
k = "kubectl";
kc = "kubectx";
kn = "kubens";
};
}

View file

@ -32,8 +32,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
wget wget
kubectl
kubectx
]; ];
nix.settings.experimental-features = [ nix.settings.experimental-features = [