🔧 add .npmrc for global installs in ~/.local

This commit is contained in:
2024-02-27 18:25:18 -05:00
parent 130d5dc39b
commit 5238493e10
2 changed files with 25 additions and 19 deletions

View File

@ -1,15 +1,21 @@
_:
{
home.file.".ghci".text = ''
:set prompt "λ> "
'';
home = {
file.".ghci".text = ''
:set prompt "λ> "
'';
home.sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.deno/bin"
"$HOME/.config/emacs/bin"
"$HOME/.go/bin"
"$HOME/.local/bin"
];
file.".npmrc".text = ''
prefix = ''${HOME}/.local
'';
sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.deno/bin"
"$HOME/.config/emacs/bin"
"$HOME/.go/bin"
"$HOME/.local/bin"
];
};
}