Compare commits

..

No commits in common. "7eb7f243438f6878d5da54bb5afcb2bf23e98e35" and "6bc3e70cc93d9ee7a3c9f59f2610687c9c5fda12" have entirely different histories.

2 changed files with 9 additions and 7 deletions

View File

@ -24,8 +24,8 @@
git git
# Containers # Containers
colima colima
unstable.docker-client docker-client
unstable.docker-compose docker-compose
# Video # Video
ffmpeg ffmpeg
# Spotify # Spotify

View File

@ -7,7 +7,6 @@
nodePackages.yarn nodePackages.yarn
unstable.nodePackages.pnpm unstable.nodePackages.pnpm
deno deno
unstable.bun
# PHP # PHP
php php
# Python # Python
@ -24,12 +23,15 @@
extensions = ["rust-src"]; extensions = ["rust-src"];
}) })
]; ];
home.file.npmrc = {
enable = true;
target = ".npmrc";
text = ''
prefix = ''${HOME}/.npm-packages
'';
};
programs.zsh.initExtra = '' programs.zsh.initExtra = ''
export PATH=~/.npm-packages/bin:$PATH export PATH=~/.npm-packages/bin:$PATH
export NODE_PATH=~/.npm-packages/lib/node_modules export NODE_PATH=~/.npm-packages/lib/node_modules
''; '';
programs.direnv = {
enable = true;
};
} }