feat(testvm): declare the second disk

The launcher attaches moonix-home.qcow2 as /dev/vdb, so moonarch.disk.home is
exercised in the VM before it runs on the desktop own disks.
This commit is contained in:
2026-08-20 14:16:51 +02:00
parent 2fd4dcd073
commit 58ee48671e
+7
View File
@@ -19,6 +19,13 @@
enable = true;
device = "/dev/vda";
swapSize = "2G";
# Second disk, attached by the launcher when moonix-home.qcow2 exists. This
# is where moonarch.disk.home is exercised before it runs on the desktop's
# real disks: own GPT, own crypted-home container, /home off the first disk.
home = {
enable = true;
device = "/dev/vdb";
};
};
boot.loader.systemd-boot.enable = true;