Windows 11 Home has the hyper-v services disabled but there’s a way to install it and use your VMS.
1 – Open the Task-Manager typing it on the Windows search bar and check if is it enabled on Windows
2 – Open the notepad and copy the content and save it as hyperv.bat
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hv-home.txt
for /f %%i in ('findstr /i . hv-home.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hv-home.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause
3 – Find your file on the path that you saved the file and then right click -> Execute as administrator.
4 – After that you are capable to install the Hyper-V services on windows features.
Ref: https://pureinfotech.com/install-hyperv-home-windows-11/