Skip to content

Instantly share code, notes, and snippets.

@datafunk
Created April 14, 2016 00:09
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 datafunk/6d8513f536e78aedc14a505c25e11f45 to your computer and use it in GitHub Desktop.
Save datafunk/6d8513f536e78aedc14a505c25e11f45 to your computer and use it in GitHub Desktop.
Vagrant W10 Edge config
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "MSEdge/Win10TH2"
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
# Customize the amount of memory on the VM:
vb.memory = "1024"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment