mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
15 lines
238 B
Nix
15 lines
238 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.npm = {
|
|
enable = true;
|
|
package = pkgs.nodejs_24;
|
|
settings.prefix = "${config.home.homeDirectory}/.npm";
|
|
};
|
|
|
|
home.sessionPath = [
|
|
"${config.home.homeDirectory}/.npm/bin"
|
|
];
|
|
}
|