Skip to content

Instantly share code, notes, and snippets.

@msteen
Created March 22, 2020 17:48
Show Gist options
  • Save msteen/8e3b987feecc98e0317383def42ce3fe to your computer and use it in GitHub Desktop.
Save msteen/8e3b987feecc98e0317383def42ce3fe to your computer and use it in GitHub Desktop.
NodeJS outside of Nix within NixOS
{
environment.systemPackages = with pkgs; [ nodejs-12_x ];
environment.shellInit = ''
# Workaround for not being able to install packages globally.
export PATH="/opt/npm/bin:$PATH"
'';
}
globalconfig = /opt/npm/npmrc
prefix = /opt/npm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment