Skip to content

Instantly share code, notes, and snippets.

@lucperkins
Last active September 22, 2022 17:45
Show Gist options
  • Save lucperkins/72c4ae343cd226da25ee917ee5c65d91 to your computer and use it in GitHub Desktop.
Save lucperkins/72c4ae343cd226da25ee917ee5c65d91 to your computer and use it in GitHub Desktop.
{
# 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