Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

nix/microvm: bump volume sizes to 16gb

Signed-off-by: dawn <dawn@tangled.org>

dawn (Jun 11, 2026, 5:14 PM +0300) 9b228feb 6f788c52

+5 -4
+5 -4
nix/microvm/qemu.nix
··· 1 - {config, ...}: { 1 + { config, ... }: 2 + { 2 3 microvm = { 3 4 hypervisor = "qemu"; 4 5 qemu.machine = "microvm"; ··· 17 18 { 18 19 image = "rw-store.img"; 19 20 mountPoint = config.microvm.writableStoreOverlay; 20 - size = 1024 * 8; 21 + size = 1024 * 16; 21 22 fsType = "ext4"; 22 23 } 23 24 { 24 25 image = "workspace.img"; 25 26 mountPoint = "/workspace"; 26 - size = 1024 * 4; 27 + size = 1024 * 16; 27 28 fsType = "ext4"; 28 29 } 29 30 ]; ··· 40 41 socket = "control.socket"; 41 42 }; 42 43 43 - boot.kernelModules = ["vsock_loopback"]; 44 + boot.kernelModules = [ "vsock_loopback" ]; 44 45 }