mirror of
https://codeberg.org/27/inception-of-things.git
synced 2025-08-11 12:02:53 +02:00
18 lines
205 B
Nix
18 lines
205 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
# Tools
|
|
vagrant
|
|
kubectl
|
|
just
|
|
|
|
# Virtual Machine
|
|
nixos-generators
|
|
];
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et
|