nixin-web/shell.nix

13 lines
255 B
Nix
Raw Normal View History

2024-09-30 12:06:14 +00:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "nixin";
buildInputs = [
nodejs # for vitepress
nixos-generators # for building images
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}