Initial commit

This commit is contained in:
Lucàs
2025-01-27 22:50:14 +01:00
commit 3fa960acc7
1497 changed files with 46331 additions and 0 deletions
@@ -0,0 +1,15 @@
{pkgs ? import <nixpkgs> {}}: let
inherit (pkgs.stdenv) isLinux;
inherit (pkgs) lib;
in
pkgs.mkShell {
buildInputs = with pkgs; ([
nodejs
yarn
]
++ lib.optionals isLinux [chromium]);
PUPPETEER_EXECUTABLE_PATH =
if isLinux
then "${pkgs.chromium}/bin/chromium"
else "";
}