diff --git a/nix/machines/hil-common.nix b/nix/machines/hil-common.nix index a0da2aff5..a440fd992 100644 --- a/nix/machines/hil-common.nix +++ b/nix/machines/hil-common.nix @@ -204,7 +204,12 @@ in "nixos" "flashing-hil" "${hostname}" - ]; + ] ++ ( + # Add platform-specific labels based on hostname + if builtins.elem hostname ["worldcoin-hil-munich-0" "worldcoin-hil-munich-5"] + then ["worldcoin-hil-pearl"] + else [] + ); replace = true; user = ghRunnerUser;