abkommen60jahre.de/shell.nix

12 lines
221 B
Nix
Raw Normal View History

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