Files
nixos/hydrogen.home.nix
T
2026-08-08 13:24:27 -04:00

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
'' ;
}