devshell/shells/node.nix

12 lines
253 B
Nix
Raw Normal View History

2023-12-30 14:45:56 +05:30
{ pkgs }: pkgs.mkShell {
packages = with pkgs; [
nodejs_20
yarn
];
shellHook = ''
export npm_config_prefix="$PWD/.nix/npm/prefix"
export npm_config_cache="$PWD/.nix/npm/cache"
export PATH="$npm_config_prefix/bin:$PATH"
'';
}