mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 22:02:25 +01:00
initial commit
This commit is contained in:
18
shell/hashi.nix
Normal file
18
shell/hashi.nix
Normal 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
18
shell/k8s.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user