Last active
September 22, 2022 17:45
-
-
Save lucperkins/72c4ae343cd226da25ee917ee5c65d91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
# Inputs omitted for brevity | |
outputs = { ... }: { | |
devShells.default = pkgs.mkShell { | |
buildInputs = with pkgs; [ node2nix nodejs pnpm yarn ]; | |
shellHook = '' | |
echo "node `${pkgs.nodejs}/bin/node --version`" | |
''; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment