mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
14 lines
354 B
Nix
14 lines
354 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
programs.bash.interactiveShellInit = ''
|
|
source <(kubectl completion bash)
|
|
complete -F __start_kubectl k
|
|
'';
|
|
environment.systemPackages = with pkgs; [
|
|
kubectl
|
|
kubernetes-helm
|
|
|
|
# dedicated script, because bash aliases dont work with `watch`
|
|
(writeShellScriptBin "k" "exec kubectl \"$@\"")
|
|
];
|
|
}
|