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
# ── Package management / version management ──
mise
uv
# ── LSP servers ──
@@ -35,9 +34,14 @@
ast-grep
];
# ── mise config ──────────────────────────────────────
xdg.configFile."mise/config.toml".text = ''
[settings]
trusted_config_paths = ["/"]
'';
# ── mise ─────────────────────────────────────────────
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = {
settings = {
trusted_config_paths = [ "/" ];
};
};
};
}