Just commit the list of pages

Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
2026-01-19 15:17:26 -08:00
parent f48a6c879b
commit 69783ca88a
3 changed files with 153 additions and 0 deletions

35
flake.nix Normal file
View File

@@ -0,0 +1,35 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
default = pkgs.mkShell {
packages = [
pkgs.nodejs
pkgs.yarn
];
nativeBuildInputs = [ pkgs.yarnConfigHook ];
# Must be named this for pkgs.yarnConfigHook
yarnOfflineCache = pkgs.fetchYarnDeps {
yarnLock = ./yarn.lock;
};
# PLAYWRIGHT_BROWSERS_PATH = pkgs.playwright-driver.browsers;
# PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "1";
# Optional but often needed in Nix sandboxes:
# XDG_CACHE_HOME = "$TMPDIR/xdg-cache";
# XDG_CONFIG_HOME = "$TMPDIR/xdg-config";
# XDG_DATA_HOME = "$TMPDIR/xdg-data";
};
}
);
}