don’t do hydra builds for i686

This commit is contained in:
Charlotte 🦝 Delenk 2022-08-08 08:15:02 +01:00
parent 78ba1816c9
commit 97db0741b4
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -99,7 +99,7 @@
)));
hydraJobs =
if pkgs.lib.strings.hasSuffix "-linux" system
if (system == "x86_64-linux") || (system == "aarch64-linux")
then {
inherit packages devShells formatter;
inherit (inputs.cargo2nix.packages.${system}) cargo2nix;