Vagrant.configure("2") do |config|
config.vm.define "fbsd_14" do |c|
c.vm.box = "roboxes/freebsd14"
end
config.vm.provider "libvirt" do |qe|
qe.driver = "kvm"
qe.cpus = 2
qe.memory = 8192
end
config.vm.boot_timeout = 600
config.vm.synced_folder ".", "/vagrant", type: "rsync",
rsync__exclude: [".git", ".vagrant.d"]
config.vm.provision "shell", inline: <<~SHELL
set -e
pkg install -y curl bash llvm
chsh -s /usr/local/bin/bash vagrant
pw groupmod wheel -m vagrant
su -l vagrant <<'EOF'
curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.88.0
EOF
SHELL
end