DodoApp: Support dev virtual machines

Change-Id: Ib7641adb5be477bdde7cd9a06df4b45aa65a1c01
diff --git a/core/installer/values-tmpl/qbittorrent.cue b/core/installer/values-tmpl/qbittorrent.cue
index d569311..bec6a3c 100644
--- a/core/installer/values-tmpl/qbittorrent.cue
+++ b/core/installer/values-tmpl/qbittorrent.cue
@@ -12,41 +12,43 @@
 description: "qBittorrent is a cross-platform free and open-source BitTorrent client written in native C++. It relies on Boost, Qt 6 toolkit and the libtorrent-rasterbar library, with an optional search engine written in Python."
 icon: "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 48 48'><circle cx='24' cy='24' r='21.5' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M26.651 22.364a5.034 5.034 0 0 1 5.035-5.035h0a5.034 5.034 0 0 1 5.034 5.035v3.272a5.034 5.034 0 0 1-5.034 5.035h0a5.034 5.034 0 0 1-5.035-5.035m0 5.035V10.533m-5.302 15.103a5.034 5.034 0 0 1-5.035 5.035h0a5.034 5.034 0 0 1-5.034-5.035v-3.272a5.034 5.034 0 0 1 5.034-5.035h0a5.034 5.034 0 0 1 5.035 5.035m0-5.035v20.138'/></svg>"
 
-images: {
-	qbittorrent: {
-		registry: "lscr.io"
-		repository: "linuxserver"
-		name: "qbittorrent"
-		tag: "4.5.3"
-		pullPolicy: "IfNotPresent"
+out: {
+	images: {
+		qbittorrent: {
+			registry: "lscr.io"
+			repository: "linuxserver"
+			name: "qbittorrent"
+			tag: "4.5.3"
+			pullPolicy: "IfNotPresent"
+		}
 	}
-}
 
-charts: {
-	qbittorrent: {
-		kind: "GitRepository"
-		address: "https://code.v1.dodo.cloud/helm-charts"
-		branch: "main"
-		path: "charts/qbittorrent"
+	charts: {
+		qbittorrent: {
+			kind: "GitRepository"
+			address: "https://code.v1.dodo.cloud/helm-charts"
+			branch: "main"
+			path: "charts/qbittorrent"
+		}
 	}
-}
 
-helm: {
-	qbittorrent: {
-		chart: charts.qbittorrent
-		values: {
-			pcloudInstanceId: global.id
-			ingress: {
-				className: input.network.ingressClass
-				domain: _domain
-			}
-			webui: port: 8080
-			bittorrent: port: 6881
-			storage: size: "100Gi"
-			image: {
-				repository: images.qbittorrent.fullName
-				tag: images.qbittorrent.tag
-				pullPolicy: images.qbittorrent.pullPolicy
+	helm: {
+		qbittorrent: {
+			chart: charts.qbittorrent
+			values: {
+				pcloudInstanceId: global.id
+				ingress: {
+					className: input.network.ingressClass
+					domain: _domain
+				}
+				webui: port: 8080
+				bittorrent: port: 6881
+				storage: size: "100Gi"
+				image: {
+					repository: images.qbittorrent.fullName
+					tag: images.qbittorrent.tag
+					pullPolicy: images.qbittorrent.pullPolicy
+				}
 			}
 		}
 	}