From 35896a5eac0f0f80b6a754d0560d7901ade5028b Mon Sep 17 00:00:00 2001 From: EthanShoeDev <13422990+EthanShoeDev@users.noreply.github.com> Date: Mon, 22 Dec 2025 19:09:29 -0500 Subject: [PATCH] add hyperv --- vm_test/Vagrantfile | 5 +++++ vm_test/justfile | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/vm_test/Vagrantfile b/vm_test/Vagrantfile index 30bd15c..e67f3c7 100644 --- a/vm_test/Vagrantfile +++ b/vm_test/Vagrantfile @@ -14,6 +14,11 @@ Vagrant.configure("2") do |config| vb.customize ["modifyvm", :id, "--vram", "256"] end + config.vm.provider "hyperv" do |hv| + hv.memory = "8192" + hv.cpus = 6 + end + # Provisioning script to install prerequisites config.vm.provision "shell", privileged: true, powershell_args: "-ExecutionPolicy Bypass", inline: <<-SHELL $winget_ids = @( diff --git a/vm_test/justfile b/vm_test/justfile index 883bd41..e876558 100644 --- a/vm_test/justfile +++ b/vm_test/justfile @@ -13,6 +13,10 @@ choose: up: vagrant up +# Up the vagrant box +up-hyperv: + vagrant up --provider=hyperv + # Reload the vagrant box and provision it reload: vagrant reload --provision