kubes/shell.nix

12 lines
196 B
Nix
Raw Permalink Normal View History

2021-01-08 11:19:09 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.bashInteractive
pkgs.kubectl
];
shellHook = ''
export KUBECONFIG=$PWD/cluster-admin.kubeconfig
'';
}