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
