nix-config/home/common/universal/mise.nix
2024-08-21 15:15:04 +02:00

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