From 5e3ff5b15b1d319f621afaaac8f226fea11e4470 Mon Sep 17 00:00:00 2001 From: zack Date: Fri, 18 Oct 2024 23:44:04 -0400 Subject: [PATCH] make hydra only build linux --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 0c95e1a..cff584d 100644 --- a/flake.nix +++ b/flake.nix @@ -40,9 +40,9 @@ }; }); - hydraJobs = eachSystem (pkgs: { - build = self.packages.${pkgs.system}.default; - }); + hydraJobs = { + build = self.packages."x86_64-linux".default; + }; devShells = eachSystem (pkgs: { default = pkgs.mkShell {