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.
This commit is contained in:
Ben Potter 2026-04-27 13:57:19 +00:00
parent d5bdf7f9f5
commit 5f2daa573f

View File

@ -119,13 +119,13 @@ data "coder_parameter" "disk" {
description = "Root disk size in GB." description = "Root disk size in GB."
type = "number" type = "number"
form_type = "slider" form_type = "slider"
default = 20 default = 50
icon = "/icon/database.svg" icon = "/icon/database.svg"
mutable = true mutable = true
order = 3 order = 3
validation { validation {
min = 10 min = 10
max = 200 max = 500
} }
} }