1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-06-01 22:16:31 +02:00
github.com_the-nix-way_dev-.../node/flake.nix
2022-10-12 16:42:34 -05:00

36 lines
799 B
Nix

{
description = "A Nix-flake-based Node.js development environment";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs =
{ self
, flake-utils
, nixpkgs
}:
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
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ node2nix nodejs pnpm yarn ];
shellHook = ''
echo "node `${pkgs.nodejs}/bin/node --version`"
'';
};
});
}