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