Move npm configuration
This commit is contained in:
parent
225bf51396
commit
66c5842b76
nix/home/opdavies
|
@ -48,6 +48,7 @@ in
|
|||
imports =
|
||||
[
|
||||
../common
|
||||
./modules/node.nix
|
||||
shared-config
|
||||
]
|
||||
++ pkgs.lib.optionals (!headless) [
|
||||
|
|
17
nix/home/opdavies/modules/node.nix
Normal file
17
nix/home/opdavies/modules/node.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue