Files
nix/shell/k8s.nix
2023-07-07 08:49:04 +02:00

19 lines
309 B
Nix

let
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { };
in
{ pkgs ? import <nixpkgs> {
config.allowUnfree = true;
}
}:
pkgs.mkShell {
buildInputs = with pkgs; [
dnsutils
netcat
terraform
kubectl
kubernetes-helm
k9s
lens
];
}