diff --git a/incus/main.tf b/incus/main.tf index 772e62a..f32b150 100644 --- a/incus/main.tf +++ b/incus/main.tf @@ -52,13 +52,27 @@ resource "incus_instance" "observer-tofu" { resource "incus_instance" "forgejo-runner-tofu" { - name = "observer-tofu" + name = "forgejo-runner-tofu" image = "images:nixos/25.05/amd64" profiles = [ incus_profile.d.name ] config = { - "limits.cpu" = 4 + "limits.cpu" = 6 "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" + } +}