Last active
February 3, 2017 02:11
-
-
Save noroutine/637334c16b6c2012c78426c40cb946b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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