From 3219b8da4b11a3653a48bfb940349950ab004e16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Wed, 27 Aug 2025 23:00:47 +0200 Subject: [PATCH] nix-cache01: re-add homelab label --- services/actions-runner/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/services/actions-runner/default.nix b/services/actions-runner/default.nix index 3310660..b5bde79 100644 --- a/services/actions-runner/default.nix +++ b/services/actions-runner/default.nix @@ -39,11 +39,15 @@ privileged = false; }; }; - labels = builtins.map (n: "${n}:docker://gitea/runner-images:${n}") [ - "ubuntu-latest" - "ubuntu-latest-slim" - "ubuntu-latest-full" - ]; + labels = + builtins.map (n: "${n}:docker://gitea/runner-images:${n}") [ + "ubuntu-latest" + "ubuntu-latest-slim" + "ubuntu-latest-full" + ] + ++ [ + "homelab" + ]; url = "https://git.t-juice.club"; };