doipjs/flake.nix
2024-06-02 16:51:27 +02:00

26 lines
No EOL
532 B
Nix

{
description = "doipjs";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShell = with pkgs; mkShell {
buildInputs = [
nodejs_20
];
shellHook = ''
echo "node `${pkgs.nodejs_20}/bin/node --version`"
'';
};
});
}