nix-config/home-manager/mise.nix
2024-08-04 21:46:53 +02:00

12 lines
186 B
Nix

{ config, pkgs, lib, ... }: {
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = {
tools = {
node = "lts";
};
};
};
}