dev-templates/node/flake.nix

36 lines
790 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
outputs =
{ self
, flake-utils
, nixpkgs
}:
2022-08-20 12:06:53 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [
(self: super: rec {
nodejs = super.nodejs-18_x;
pnpm = super.nodePackages.pnpm;
yarn = (super.yarn.override { inherit nodejs; });
})
];
pkgs = import nixpkgs { inherit overlays system; };
in
{
devShell = 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
}