dev-templates/node/flake.nix
2022-07-29 01:21:18 +02:00

31 lines
745 B
Nix

{
description = "A Nix-flake-based Node.js development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) mkShell;
nodejs = pkgs.nodejs;
pnpm = pkgs.nodePackages.pnpm;
yarn = pkgs.yarn;
in {
devShells = {
default = mkShell {
buildInputs = [ nodejs pnpm (yarn.override { inherit nodejs; }) ];
shellHook = ''
echo "node `${nodejs}/bin/node --version`"
'';
};
};
});
}