refactor(mise): use programs.mise home-manager module

This commit is contained in:
2026-04-13 22:41:47 +08:00
parent d6a0bf0cae
commit 75340604f1
+10 -6
View File
@@ -8,7 +8,6 @@
bun bun
# ── Package management / version management ── # ── Package management / version management ──
mise
uv uv
# ── LSP servers ── # ── LSP servers ──
@@ -35,9 +34,14 @@
ast-grep ast-grep
]; ];
# ── mise config ────────────────────────────────────── # ── mise ─────────────────────────────────────────────
xdg.configFile."mise/config.toml".text = '' programs.mise = {
[settings] enable = true;
trusted_config_paths = ["/"] enableFishIntegration = true;
''; globalConfig = {
settings = {
trusted_config_paths = [ "/" ];
};
};
};
} }