fix(deploy): never build ARM on target

This commit is contained in:
2026-04-06 16:37:33 +02:00
parent c373ef8455
commit 7cd3b85d81

View File

@@ -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;
};
};