diff options
author | Franck Cuny <franck@fcuny.net> | 2024-02-02 09:02:34 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-02-02 09:02:34 -0800 |
commit | 3a13bdf55f860b620063717751bec3f7ccea73a5 (patch) | |
tree | 632ed2b23800f378b14e2987703e813b7655be3f | |
parent | some Mac stuff (diff) | |
download | world-3a13bdf55f860b620063717751bec3f7ccea73a5.tar.gz |
install kubectl
Diffstat (limited to '')
-rw-r--r-- | home/dev.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/home/dev.nix b/home/dev.nix index 0c35380..00107f3 100644 --- a/home/dev.nix +++ b/home/dev.nix @@ -29,6 +29,8 @@ in pythonEnv + kubectl + google-cloud-sdk ]; @@ -36,6 +38,10 @@ in config.home.sessionVariables.GOBIN ]; + programs.zsh.shellAliases = { + kc = "kubectl"; + }; + home.sessionVariables = with config.xdg; { IPYTHONDIR = "${cacheHome}/ipython"; PIP_LOG = "${cacheHome}/pip/pip.log"; |