nixin-web/shell.nix
2024-09-30 15:06:14 +03:00

12 lines
255 B
Nix

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