From 341634dbd4903c1e8797210ee93575343d21db24 Mon Sep 17 00:00:00 2001 From: fleaz Date: Tue, 22 Apr 2025 15:21:53 +0200 Subject: [PATCH] modules/zsh: Writing my own k8s cli tooling... --- home-manager/modules/zsh.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/home-manager/modules/zsh.nix b/home-manager/modules/zsh.nix index 08159ab..cd92958 100644 --- a/home-manager/modules/zsh.nix +++ b/home-manager/modules/zsh.nix @@ -3,7 +3,7 @@ enable = true; oh-my-zsh = { enable = true; - plugins = [ "git" "fzf" "kubectx" ]; + plugins = [ "git" "fzf" ]; theme = "kolo"; }; history = { @@ -13,9 +13,6 @@ }; shellAliases = { "k" = "kubectl"; - "kx" = "kubectx"; - "kn" = "kubechn"; - "kc" = "kubechc"; "dl" = "ls -lhtr --color=always ~/Downloads | tail -n 10"; # Show the 10 newest Downloads "buzzer" = "ssh -i Nextcloud/Privat/id_door door@door.cccda.de buzzer"; "beep" = "paplay /usr/share/sounds/freedesktop/stereo/complete.oga"; # play "ding" for long running jobs @@ -43,7 +40,7 @@ export EDITOR="nvim"; export PATH="$PATH:$HOME/.krew/bin:$HOME/bin:$HOME/go/bin"; source <(kubectl completion zsh) - source ~/repos/kubech/kubech + source ~/bin/ktx export GOPRIVATE=gitlab.com export GOAUTH=netrc