dotfiles/nix/home-manager/modules/packages/mise.nix
2024-10-15 15:11:50 -04:00

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";
};
};
};
}