Files
nix-config/home/base/core/npm.nix
2026-04-17 16:20:46 +08:00

10 lines
207 B
Nix

{ config, ... }:
{
# 1. make `npm install -g <pkg>` happey
# 2. set min-release-age for security
home.file.".npmrc".text = ''
prefix=${config.home.homeDirectory}/.npm
min-release-age=7
'';
}