Organize templates into per-stack folders

This commit is contained in:
2026-08-29 15:10:13 -04:00
parent 583ade52e3
commit fa917ff7fe
45 changed files with 2336 additions and 321 deletions
+21
View File
@@ -0,0 +1,21 @@
data "coder_parameter" "gpu" {
name = "gpu"
display_name = "GPU Assignment"
description = "Which GPU(s) to attach. GPU 1 is shared with Ollama and Immich, so GPU 0 is the default to avoid contention."
default = "0"
mutable = true
icon = "/icon/memory.svg"
option {
name = "GPU 0 - RTX 3060"
value = "0"
}
option {
name = "GPU 1 - GTX 1660 (shared with Ollama and Immich)"
value = "1"
}
option {
name = "Both GPUs"
value = "all"
}
}