12 lines
186 B
Nix
12 lines
186 B
Nix
{ config, pkgs, lib, ... }: {
|
|
programs.mise = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
|
|
globalConfig = {
|
|
tools = {
|
|
node = "lts";
|
|
};
|
|
};
|
|
};
|
|
}
|