19 lines
416 B
Nix
19 lines
416 B
Nix
{ config, inputs, pkgs, ... }: {
|
|
imports = [
|
|
./programs.vscode.nix
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
# Points to the Homebrew location mentioned in your caveat
|
|
NPM_CONFIG_PREFIX = "${config.home.homeDirectory}/.npm-global";
|
|
};
|
|
|
|
home.sessionPath = [
|
|
"${config.home.homeDirectory}/.npm-global/bin"
|
|
];
|
|
|
|
home.file.".npmrc".text = ''
|
|
prefix=${config.home.homeDirectory}/.npm-global
|
|
'' ;
|
|
}
|