fix(nix): build dashboard from package directory

Set the web package source root to apps/dashboard so npm patch/build phases run beside the dashboard lockfile while keeping apps/shared available as a sibling.
This commit is contained in:
Brooklyn Nicholson 2026-05-12 00:24:15 -04:00
parent db9e74b1e0
commit 8b6344dffd

View file

@ -15,7 +15,7 @@ in
pkgs.buildNpmPackage (npm // {
pname = "hermes-web";
inherit src npmDeps version;
npmRoot = "dashboard";
sourceRoot = "apps/dashboard";
doCheck = false;