10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
Vagrant.configure("2") do |config|
|
|
config.vm.box = "utm/ubuntu-24.04"
|
|
|
|
config.vm.provider "utm" do |utm|
|
|
utm.cpus = 2
|
|
utm.memory = 2048
|
|
end
|
|
end
|
|
|