mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 14:01:29 +01:00
19 lines
309 B
Nix
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
|
|
];
|
|
}
|