From 6d07188b38a8ce59f23b72b22aa1ad21b17879ca Mon Sep 17 00:00:00 2001 From: Jermeiah S Date: Thu, 19 Jun 2025 18:19:57 -0400 Subject: [PATCH] added base config --- incus/main.tf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/incus/main.tf b/incus/main.tf index 68fcb62..7bdfb03 100644 --- a/incus/main.tf +++ b/incus/main.tf @@ -62,3 +62,17 @@ resource "incus_instance" "forgejo-runner-tofu" { "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" + } +}