Files
debian11-template/shell.nix
T

13 lines
196 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
name = "VagrantShell";
buildInputs = with pkgs; [
vagrant
ansible
];
shellHook = ''
echo "Welcome to vagrant shell";
'';
}