flakes/users/rin/npm.nix

8 lines
205 B
Nix
Raw Normal View History

2021-05-26 21:21:58 +07:00
{ config, pkgs, ... }: {
2021-06-04 16:17:02 +07:00
xdg.configFile."npm/npmrc".text = ''
2021-05-26 21:21:58 +07:00
cache=${config.xdg.dataHome}/npm/cache
prefix=${config.xdg.dataHome}/npm
store-dir=${config.xdg.dataHome}/npm/pnpm-store
'';
}