12 lines
216 B
Nix
12 lines
216 B
Nix
let
|
|
pkgs = import <nixpkgs> { };
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs-12_x
|
|
yarn
|
|
];
|
|
shellHook = ''
|
|
export PUPPETEER_EXECUTABLE_PATH="${pkgs.ungoogled-chromium}/bin/chromium"
|
|
'';
|
|
}
|