mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 18:56:49 +01:00
13 lines
332 B
Ruby
13 lines
332 B
Ruby
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.provider :libvirt do |libvirt|
|
||
|
libvirt.driver = "kvm"
|
||
|
libvirt.host = ""
|
||
|
libvirt.memory = 1024
|
||
|
libvirt.cpus = 2
|
||
|
libvirt.input :type => "tablet", :bus => "usb"
|
||
|
libvirt.video_type = "qxl"
|
||
|
libvirt.graphics_type = "spice"
|
||
|
libvirt.machine_arch = "x86_64"
|
||
|
end
|
||
|
end
|