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