nix-config/home/common/universal/mise.nix

15 lines
266 B
Nix

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