homefree/site/admin/default.nix
Ellis Rahhal 306c15c890 * Updated localDomain config
* Added generic static site config
* Added stub admin page
2024-12-21 21:42:47 -08:00

18 lines
406 B
Nix

{ pkgs, buildNpmPackage, ... }:
buildNpmPackage {
name = "admin";
src = ./.;
# npmDepsHash = lib.fakeHash;
npmDepsHash = "sha256-C7dFRyWooP920Ei4JeK10fL93zJN5XQu85+Tz6oU0fA=";
# The prepack script runs the build script, which we'd rather do in the build phase.
npmPackFlags = [
"--legacy-peer-deps"
"--loglevel=verbose"
];
makeCacheWritable = true;
nodejs = pkgs.nodejs_22;
}