From 2c7ac26e4eaeaa8eb8d2a159370237c13e710ebc Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 27 Feb 2025 21:04:44 +0300 Subject: [PATCH] fix: only build supported systems in CI --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 09050c6..76eb8f0 100644 --- a/flake.nix +++ b/flake.nix @@ -108,5 +108,9 @@ |> listToAttrs; in hostsByType // hostConfigs // { inherit lib; + + herculesCI = { ... }: { + ciSystems = [ "aarch64-linux" "x86_64-linux" ]; + }; }; }