20 lines
422 B
Nix
20 lines
422 B
Nix
{...}: {
|
|
programs.mise = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
globalConfig = {
|
|
tools = {
|
|
node = "lts";
|
|
python = "latest";
|
|
uv = "latest";
|
|
};
|
|
settings = {
|
|
status = {
|
|
missing_tools = "always";
|
|
};
|
|
python_compile = true;
|
|
python_default_packages_file = "$HOME/.dotfiles/defaults/default-packages";
|
|
};
|
|
};
|
|
};
|
|
}
|