mirror of
https://codeberg.org/27/inception-of-things.git
synced 2025-10-13 18:44:45 +02:00
23 lines
255 B
Nix
23 lines
255 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
# Tools
|
|
vagrant
|
|
just
|
|
ansible
|
|
|
|
# Kube sh*t
|
|
kubectl
|
|
k3d
|
|
minikube
|
|
|
|
# Virtual Machine
|
|
nixos-generators
|
|
];
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et
|