flakes/users/rin/npm.nix
2021-05-26 22:41:31 +07:00

9 lines
233 B
Nix

{ config, pkgs, ... }: {
home.packages = [ pkgs.nodejs ];
home.file.".npmrc".text = ''
cache=${config.xdg.dataHome}/npm/cache
prefix=${config.xdg.dataHome}/npm
store-dir=${config.xdg.dataHome}/npm/pnpm-store
'';
}