nix-config/home/features/cli/mise.nix

16 lines
253 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
python3 # needed for installing node.js
];
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = {
tools = {
node = "lts";
};
};
};
}