dev-templates/node/flake.nix

32 lines
858 B
Nix
Raw Normal View History

2022-07-28 23:37:55 +02:00
{
description = "A Nix-flake-based Node.js development environment";
2022-08-20 12:06:53 +02:00
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
2022-07-28 23:37:55 +02:00
2022-08-20 12:06:53 +02:00
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
2022-07-28 23:37:55 +02:00
let
nodeOverlay = self: super: rec {
nodejs = super.nodejs-18_x;
pnpm = super.nodePackages.pnpm;
yarn = (super.yarn.override { inherit nodejs; });
};
overlays = [ nodeOverlay ];
pkgs = import nixpkgs { inherit overlays system; };
2022-08-20 13:47:43 +02:00
in
{
2022-07-28 23:37:55 +02:00
devShells = {
default = pkgs.mkShell {
buildInputs = with pkgs; [ node2nix nodejs pnpm yarn ];
2022-07-28 23:37:55 +02:00
shellHook = ''
echo "node `${pkgs.nodejs}/bin/node --version`"
2022-07-28 23:37:55 +02:00
'';
};
};
2022-07-29 00:11:05 +02:00
});
2022-07-28 23:37:55 +02:00
}