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