From b3ab7dcb1cd18af60a3ffd561584cf518c6e5671 Mon Sep 17 00:00:00 2001 From: hektor Date: Mon, 2 Feb 2026 21:40:30 +0100 Subject: [PATCH] fix: smarten 'buildOnTarget' by using tags --- deploy/colmena.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/colmena.nix b/deploy/colmena.nix index c32b127..5af9332 100644 --- a/deploy/colmena.nix +++ b/deploy/colmena.nix @@ -9,6 +9,7 @@ let deployment = { targetHost = self.nixosConfigurations.${hostname}.config.ssh.publicHostname; targetUser = self.nixosConfigurations.${hostname}.config.ssh.username; + buildOnTarget = builtins.any (t: t != "local") tags; inherit tags; }; };