initial commit

This commit is contained in:
2023-07-07 08:49:04 +02:00
commit 08b84676a5
18 changed files with 524 additions and 0 deletions

18
shell/hashi.nix Normal file
View File

@@ -0,0 +1,18 @@
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
];
}

18
shell/k8s.nix Normal file
View File

@@ -0,0 +1,18 @@
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
];
}