diff --git a/cmd/start.go b/cmd/start.go index 19cff925c..5f261ba5c 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -241,12 +241,6 @@ func mountsFromFlag(mounts []string) []config.Mount { func setDefaults(cmd *cobra.Command) { if startCmdArgs.VMType == "" { startCmdArgs.VMType = defaultVMType - - // m3 devices cannot use qemu - if util.M3() { - startCmdArgs.VMType = "vz" - cmd.Flag("vm-type").Changed = true - } } if util.MacOS13OrNewer() { @@ -281,10 +275,6 @@ func setConfigDefaults(conf *config.Config) { if conf.VMType == "" { conf.VMType = defaultVMType } - // m3 devices cannot use qemu - if util.M3() { - conf.VMType = "vz" - } if conf.MountType == "" { conf.MountType = defaultMountTypeQEMU