From c722ebaeae6b6043e9a1d95cd0aad47e66208a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Thu, 12 Jun 2025 00:36:51 +0300 Subject: [PATCH] Add aarch-64 to Hydra CI --- servers/hydra.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/servers/hydra.nix b/servers/hydra.nix index b4a49cb..bcfadb1 100644 --- a/servers/hydra.nix +++ b/servers/hydra.nix @@ -8,6 +8,8 @@ in ./utils/acme-http-client.nix ]; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + services = { hydra = { enable = true; @@ -39,7 +41,10 @@ in { hostName = "localhost"; protocol = null; - system = "x86_64-linux"; + systems = [ + "x86_64-linux" + "aarch64-linux" + ]; supportedFeatures = [ "kvm" "nixos-test"