nix-darwin/modules/aspects/_cli-tools/mise.nix
Poby 8b537c2d14
fix: mise, ssh, nix
mise: rebuild took more than 10 minutes - cause not found
ssh: host Github alias doesn't work. replace with `github.com`
nix: use nix latest version
2026-04-17 00:37:59 +09:00

17 lines
256 B
Nix

{
programs.mise = {
enable = true;
globalConfig = {
tools = {
node = "lts";
uv = "latest";
python = "3.13";
};
settings = {
experimental = true;
env_file = ".env";
};
};
};
}