feat: add shell

This commit is contained in:
Florian Schmitt 2024-09-30 15:06:14 +03:00
parent 311ee6355f
commit 3fd1bb9044

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "nixin";
buildInputs = [
nodejs # for vitepress
nixos-generators # for building images
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}