Force nodejs-16_x to use openssl 1.1 to preserve legacy openssl
behavior.
Details
Details
nix develop yarn cleaninstall # might be optional cd landing yarn prod
Diff Detail
Diff Detail
- Repository
- rCOMM Comm
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Caching aside, is there a way to have it use "more of my computer" when it's building node?
Comment Actions
The ./scripts/install_nix.sh should provide you with defaults, currently it will give 4 cores per build. It's possible that the build is just single threaded for some reason.
Comment Actions
To anwser your question more directly, it's the max-jobs and cores values for nix.conf. https://nixos.org/manual/nix/stable/command-ref/conf-file.html
You should also be able to pass --jobs N --cores N to any nix command. Jobs are how many distinct packages it can build, and cores is how many cores per build it will use.
Comment Actions
Is there a way we could default to the number of cores that the computer has?
This is done already as part of ./scripts/install_nix.sh