summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lib/systems/supported.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/systems/supported.nix b/lib/systems/supported.nix
index ef429454f04..a1c038a5c8b 100644
--- a/lib/systems/supported.nix
+++ b/lib/systems/supported.nix
@@ -4,7 +4,9 @@
 { lib }:
 rec {
   # List of systems that are built by Hydra.
-  hydra = tier1 ++ tier2 ++ tier3;
+  hydra = tier1 ++ tier2 ++ tier3 ++ [
+    "aarch64-darwin"
+  ];
 
   tier1 = [
     "x86_64-linux"
@@ -16,7 +18,6 @@ rec {
   ];
 
   tier3 = [
-    "aarch64-darwin"
     "armv6l-linux"
     "armv7l-linux"
     "i686-linux"