Skip to content

Instantly share code, notes, and snippets.

@dreua
Last active November 24, 2024 18:07
Show Gist options
  • Save dreua/7435bfcf58e154d4e9f506fcc7380c81 to your computer and use it in GitHub Desktop.
Save dreua/7435bfcf58e154d4e9f506fcc7380c81 to your computer and use it in GitHub Desktop.
Vagrant: Disable nfs (asks for sudo password) and more memory and cpus on Linux
config.nfs.verify_installed = false
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.provider :libvirt do |libvirt|
libvirt.cpus = 7
libvirt.memory = 4069
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment