Added shell.nix

This commit is contained in:
kB01 2024-04-11 19:13:24 +02:00
parent eb9a6476c7
commit 56024cc688

12
shell.nix Normal file
View file

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