From 6e7fc979597cf749067ef7a9d3bafa1aa31d1a74 Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 7 Oct 2023 17:03:18 -0400 Subject: [PATCH] forgejo: move runner to yuki --- hosts/sakura/services/forgejo.nix | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/hosts/sakura/services/forgejo.nix b/hosts/sakura/services/forgejo.nix index 401d1d2..a1cbe22 100644 --- a/hosts/sakura/services/forgejo.nix +++ b/hosts/sakura/services/forgejo.nix @@ -4,7 +4,6 @@ config, ... }: { - sops.secrets.forgejo-runner-token = {owner = "forgejo";}; services.forgejo = { enable = true; stateDir = "/var/lib/forgejo"; @@ -43,25 +42,4 @@ }; }; }; - services.gitea-actions-runner = { - package = pkgs.forgejo-actions-runner; - instances.main = { - enable = true; - name = config.networking.hostName; - url = "https://git.flake.sh"; - token = config.sops.secrets.forgejo-runner-token.path; - labels = [ - "debian-latest:docker://node:18-bullseye" - "ubuntu-latest:docker://node:18-bullseye" - #"native:host" - ]; - hostPackages = with pkgs; [ - bash - curl - coreutils - wget - gitMinimal - ]; - }; - }; }