kb-one-de/shell.nix
2024-04-11 19:13:24 +02:00

12 lines
No EOL
206 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs_21
hugo
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}