miom.space/shell.nix

12 lines
221 B
Nix
Raw Normal View History

2021-10-22 11:13:16 +00:00
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
mkShell {
buildInputs = [
nodejs
deno
];
shellHook = ''
export PATH="$PATH:/home/ben/.deno/bin"
'';
}