From f5dc1046eb4a96632f2f13ee245b8cbea9d578bc Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 7 Jul 2024 21:52:11 -0400 Subject: [PATCH] x86-ify devChecks Signed-off-by: ahuston-0 --- hydra/jobs.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hydra/jobs.nix b/hydra/jobs.nix index 6004c31..73bf17c 100644 --- a/hydra/jobs.nix +++ b/hydra/jobs.nix @@ -19,9 +19,9 @@ rec { devChecks = pkgs.releaseTools.aggregate { name = "devChecks"; constituents = [ - formatter - devShells - checks + formatter.x86_64-linux + devShells.x86_64-linux + checks.x86_64-linux ]; }; }