added base config

This commit is contained in:
Jermeiah S 2025-06-19 18:19:57 -04:00
parent 2a9eeb19b5
commit 6d07188b38
No known key found for this signature in database

View file

@ -62,3 +62,17 @@ resource "incus_instance" "forgejo-runner-tofu" {
"limits.memory" = "8GiB" "limits.memory" = "8GiB"
} }
} }
resource "incus_instance" "base-tofu" {
name = "base-tofu"
image = "images:nixos/25.05/amd64"
profiles = [
incus_profile.d.name
]
config = {
"limits.cpu" = 1
"limits.memory" = "1GiB"
}
}