nix-config/home/features/cli/mise.nix
2024-09-22 10:56:59 +02:00

12 lines
237 B
Nix

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