Files
xavierandClaude Sonnet 5 75ae00ce12 fix(mise): Trigger mise install when templated config data changes
run_onchange_after_mise-install.sh.tmpl hashed the raw contents of
config.toml.tmpl to detect changes, but that file only pulls in real
content through named templates ({{ template "..." }}) fed by
.chezmoidata. Editing that data left the raw .tmpl text (and thus the
hash) unchanged, so mise install silently stopped firing.

Switch the named-template calls to includeTemplate, which chezmoi can
resolve outside the normal source-state parsing pass (unlike the
template action, see https://github.com/twpayne/chezmoi/issues/3334).
This lets the run_onchange script hash the actual rendered output via
includeTemplate instead of the static source text.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-18 23:00:36 +02:00

49 lines
995 B
Cheetah

{{ includeTemplate "chezmoi-managed-header" . }}
[settings]
experimental = true
[settings.cargo]
binstall = true
######################### [ Bootstrap ] #########################
[bootstrap.packages]
{{ includeTemplate "mise-bootstrap-packages" . }}
# coreutils grep less
# tig
# openssh-server openssh-client mosh
# lftp fping mtr socat
######################### [ Tools ] #########################
[tool_alias]
"kitty" = "github:kovidgoyal/kitty"
"broot" = "cargo:broot"
"glab" = "go:gitlab.com/gitlab-org/cli/cmd/glab"
"tea" = "http:tea"
"kwok" = "github:kubernetes-sigs/kwok"
[tools]
usage = "latest"
# Configuration
chezmoi = "latest"
# Editor
neovim = "latest"
tree-sitter = "latest"
# Tools automated with chezmoi
{{ includeTemplate "mise-tools" . }}
# Password managers
# vault = "latest"
# Terminal
# kitty = { version = "latest", asset_pattern = "kitty-*-x86_64.txz" }
# Desktop tools
#obsidian = { version = "latest", asset_pattern = "Obsidian-{version}.AppImage" }