fix(deploy): never build ARM on target

This commit is contained in:
2026-04-06 16:37:33 +02:00
parent 483b05fc27
commit 677728c440

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