chore: rename cmux to mux in the dogfood template (#20787)

<!--

If you have used AI to produce some or all of this PR, please ensure you
have read our [AI Contribution
guidelines](https://coder.com/docs/about/contributing/AI_CONTRIBUTING)
before submitting.

-->
This commit is contained in:
Michael Suchacz
2025-11-16 00:49:06 +01:00
committed by GitHub
parent fa314fe7e5
commit 5ee39e88a3
3 changed files with 8 additions and 8 deletions
+7 -7
View File
@@ -268,16 +268,16 @@ data "coder_parameter" "ide_choices" {
form_type = "multi-select"
mutable = true
description = "Choose one or more IDEs to enable in your workspace"
default = jsonencode(["vscode", "code-server", "cursor", "cmux"])
default = jsonencode(["vscode", "code-server", "cursor", "mux"])
option {
name = "VS Code Desktop"
value = "vscode"
icon = "/icon/code.svg"
}
option {
name = "cmux"
value = "cmux"
icon = "/icon/cmux.svg"
name = "mux"
value = "mux"
icon = "/icon/mux.svg"
}
option {
name = "code-server"
@@ -375,9 +375,9 @@ module "personalize" {
agent_id = coder_agent.dev.id
}
module "cmux" {
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "cmux") ? data.coder_workspace.me.start_count : 0
source = "registry.coder.com/coder/cmux/coder"
module "mux" {
count = contains(jsondecode(data.coder_parameter.ide_choices.value), "mux") ? data.coder_workspace.me.start_count : 0
source = "registry.coder.com/coder/mux/coder"
version = "1.0.0"
agent_id = coder_agent.dev.id
subdomain = true
+1 -1
View File
@@ -21,7 +21,6 @@
"centos.svg",
"claude.svg",
"clion.svg",
"cmux.svg",
"code-insiders.svg",
"code.svg",
"coder.svg",
@@ -83,6 +82,7 @@
"microsoft-teams.svg",
"microsoft.svg",
"mlflow.svg",
"mux.svg",
"nextflow.svg",
"nexus-repository.svg",
"nix.svg",

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB