Added basic template for teh debian11 VM.

This commit is contained in:
2023-05-16 09:52:47 +03:00
commit d0cb4a0647
4 changed files with 83 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
name = "VagrantShell";
buildInputs = with pkgs; [
vagrant
ansible
];
shellHook = ''
echo "Welcome to vagrant shell";
'';
}