npm: Remove .npm-packages

We no longer need to worry about this since we can install npm packages
with Nix instead.
This commit is contained in:
Donovan Glover 2024-05-12 11:56:24 -04:00
parent 4d3cb6c027
commit 69495f38d9
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 1 additions and 7 deletions

View File

@ -7,8 +7,7 @@
shellInit = /* fish */ ''
set -U fish_greeting ""
export PATH="$HOME/.npm-packages/bin:$HOME/.local/bin:$PATH"
export NODE_PATH="$HOME/.npm-packages/lib/node_modules"
export PATH="$HOME/.local/bin:$PATH"
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export TERMCMD="kitty --single-instance"
export DIRENV_LOG_FORMAT=""

View File

@ -1,5 +0,0 @@
{
home.file.".npmrc".text = /* ini */ ''
prefix=~/.npm-packages
'';
}