Hi there! I wish to use the Apple hypervisor. I can do this manually from the interface, but I want to set this up on Vagrant. How do I do it? There's no mention of this on the official documentation. Thanks in advance!
config.vm.provider arallels do |prl| prl.name = "simple-linux-centos82" prl.customize ["set", :id, "--hypervisor-type", "apple"] prl.check_guest_tools = false prl.memory = 1024 prl.cpus = 1 end Seems to work.
Thank you, it does work I have done some benchmarking though and I realized the Parallels hypervisor is actually much better when it comes to resource usage. Apple's hypervisor often uses double the amount of RAM.