dotfiles/nix/home-manager/modules/packages/mise.nix

25 lines
503 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";
};
};
};
}