Skip to content

Instantly share code, notes, and snippets.

@nishitaniyuki
Last active January 27, 2019 15:06
Show Gist options
  • Select an option

  • Save nishitaniyuki/8996585abb0d7e7653a48b487688c758 to your computer and use it in GitHub Desktop.

Select an option

Save nishitaniyuki/8996585abb0d7e7653a48b487688c758 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.hostname = "septembertea"
config.vm.provider "virtualbox" do |vb|
vb.name = "septembertea"
vb.memory = 1024 * 8
vb.cpus = 6
vb.gui = true
vb.customize [
"modifyvm", :id,
"--vram", "256",
"--clipboard", "bidirectional",
"--draganddrop", "bidirectional",
"--ioapic", "on"
]
end
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y curl git ubuntu-desktop vim zsh
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment