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

19 lines
323 B
Nix

let
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { };
in
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [
gnumake
dnsutils
netcat
ansible
terraform
consul
unstable.nomad_1_5
vault
nomad-pack
waypoint
];
}