From 7585e3843c96089b74a9af998ab34032a510cc77 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 22 Jan 2022 17:48:57 +0100 Subject: [PATCH] vagrant: more memory for darwin64 maybe this speeds up the VM a bit. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 792a5924..1bddba10 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -367,7 +367,7 @@ Vagrant.configure(2) do |config| config.vm.define "darwin64" do |b| b.vm.box = "macos-sierra" b.vm.provider :virtualbox do |v| - v.memory = 2048 + $wmem + v.memory = 4096 + $wmem v.customize ['modifyvm', :id, '--ostype', 'MacOS_64'] v.customize ['modifyvm', :id, '--paravirtprovider', 'default'] v.customize ['modifyvm', :id, '--nested-hw-virt', 'on']