From 8b6344dffd926e37fd7c12e122b998abc2086a63 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Tue, 12 May 2026 00:24:15 -0400 Subject: [PATCH] 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. --- nix/web.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/web.nix b/nix/web.nix index 610e8a813f6..d04c38953f0 100644 --- a/nix/web.nix +++ b/nix/web.nix @@ -15,7 +15,7 @@ in pkgs.buildNpmPackage (npm // { pname = "hermes-web"; inherit src npmDeps version; - npmRoot = "dashboard"; + sourceRoot = "apps/dashboard"; doCheck = false;