kb-one-de/shell.nix

12 lines
206 B
Nix
Raw Normal View History

2024-04-11 19:13:24 +02:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs_21
hugo
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}