Move npm configuration

This commit is contained in:
Oliver Davies 2025-03-18 16:45:07 +00:00
parent 225bf51396
commit 66c5842b76
2 changed files with 18 additions and 0 deletions
nix/home/opdavies

View file

@ -48,6 +48,7 @@ in
imports =
[
../common
./modules/node.nix
shared-config
]
++ pkgs.lib.optionals (!headless) [

View file

@ -0,0 +1,17 @@
{ config, ... }:
let
inherit (config.xdg) configHome dataHome stateHome;
in
{
xdg.configFile."${config.home.sessionVariables.NPM_CONFIG_USERCONFIG}".text = ''
cache=${configHome}/npm
init-module=${configHome}/npm/config/npm-init.js
logs-dir=${stateHome}/npm/logs
prefix=${dataHome}/npm
'';
home.sessionVariables = {
NPM_CONFIG_USERCONFIG = "${configHome}/npm/npmrc";
};
}