From db9e74b1e0557d8ff71153ec3c21b54cd535541c Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Tue, 12 May 2026 00:20:15 -0400 Subject: [PATCH] fix(nix): fetch dashboard npm deps from package root Point the dashboard npm dependency fetch at apps/dashboard so Nix can find the package lockfile after the dashboard move. --- nix/web.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/web.nix b/nix/web.nix index f8190f275a..610e8a813f 100644 --- a/nix/web.nix +++ b/nix/web.nix @@ -3,8 +3,7 @@ let src = ../apps; npmDeps = pkgs.fetchNpmDeps { - inherit src; - npmRoot = "dashboard"; + src = ../apps/dashboard; hash = "sha256-jJsVp3Dz+6/GaruxcUSby+G1vVB+nHHlu1tFWE9wQZQ="; };