From a8dcb2e0bda8536c8149b3d634231ce9d25ce05f Mon Sep 17 00:00:00 2001 From: Caleb Norton Date: Mon, 19 Jan 2026 00:14:14 -0600 Subject: [PATCH] fix: nix ci - swapped dash/underscore (#9352) --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0f42509374..e4d214a0b9 100644 --- a/flake.nix +++ b/flake.nix @@ -50,7 +50,7 @@ moduleUpdaters = pkgs.lib.listToAttrs ( pkgs.lib.concatMap (cpu: map (os: { - name = "${cpu}_${os}_node_modules"; + name = "${cpu}-${os}_node_modules"; value = node_modules.override { bunCpu = cpuMap.${cpu}; bunOs = os;