Skip to content

Instantly share code, notes, and snippets.

@noroutine
Last active February 3, 2017 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noroutine/637334c16b6c2012c78426c40cb946b3 to your computer and use it in GitHub Desktop.
Save noroutine/637334c16b6c2012c78426c40cb946b3 to your computer and use it in GitHub Desktop.
Vagrant.configure("2") do |config|
config.vm.box = "boxcutter/ubuntu1604-desktop"
config.vm.provider "virtualbox" do |vb|
vb.memory = 1024
vb.customize ["modifyvm", :id, "--accelerate3d", "off"]
vb.customize ["modifyvm", :id, "--monitorcount", "1"]
end
config.ssh.insert_key = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment