From 677728c4407b86fb00b03acd58251fc5979fbf66 Mon Sep 17 00:00:00 2001 From: hektor Date: Mon, 6 Apr 2026 16:37:33 +0200 Subject: [PATCH] fix(deploy): never build ARM on target --- deploy/colmena.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/colmena.nix b/deploy/colmena.nix index 0e04298b..268b9e23 100644 --- a/deploy/colmena.nix +++ b/deploy/colmena.nix @@ -13,7 +13,7 @@ let deployment = { targetHost = self.nixosConfigurations.${hostname}.config.ssh.publicHostname; targetUser = self.nixosConfigurations.${hostname}.config.ssh.username; - buildOnTarget = builtins.any (t: t != "local") tags; + buildOnTarget = builtins.any (t: t != "local" && t != "arm") tags; inherit tags; }; };