From 5f2daa573fd1a8a16d56b6ae44882ea9efd5d2d7 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Mon, 27 Apr 2026 13:57:19 +0000 Subject: [PATCH] incus-vm: bump disk default to 50GB, max to 500GB 20GB is insufficient for NixOS builds (Go module cache alone can exceed it). 50GB is a safer default; 500GB ceiling gives room for heavy workloads. --- registry/bpmct/templates/incus-vm/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry/bpmct/templates/incus-vm/main.tf b/registry/bpmct/templates/incus-vm/main.tf index 83b2a073..ffb8f112 100644 --- a/registry/bpmct/templates/incus-vm/main.tf +++ b/registry/bpmct/templates/incus-vm/main.tf @@ -119,13 +119,13 @@ data "coder_parameter" "disk" { description = "Root disk size in GB." type = "number" form_type = "slider" - default = 20 + default = 50 icon = "/icon/database.svg" mutable = true order = 3 validation { min = 10 - max = 200 + max = 500 } }