From 91787ceb3e023507ec643eac43db211d8f68a52d 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 0f4250937..e4d214a0b 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;