diff --git a/ops/nixos/lib/forgejo-runner-cacher.nix b/ops/nixos/lib/forgejo-runner-cacher.nix index fd43778bd4..47a12c752b 100644 --- a/ops/nixos/lib/forgejo-runner-cacher.nix +++ b/ops/nixos/lib/forgejo-runner-cacher.nix @@ -36,7 +36,18 @@ in { name = config.networking.hostName; url = "https://git.lukegb.com"; tokenFile = config.my.vault.secrets.forgejo-runner-environment.path; - labels = map (label: "${label}:host://-self-hosted") cfg.selfHostedLabels; + labels = map (label: "${label}:host") cfg.selfHostedLabels; + hostPackages = with pkgs; [ + bash + coreutils + curl + gawk + gitMinimal + gnused + nodejs + wget + lix + ]; }; };