From f86fd2682c15b40a892f124cd076485873a84662 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Fri, 15 Aug 2025 15:07:10 +0000 Subject: [PATCH] fix(nix): add forgejo actions runner --- nix/hosts/chaewon/sys.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/nix/hosts/chaewon/sys.nix b/nix/hosts/chaewon/sys.nix index 465994b..d8e36a1 100644 --- a/nix/hosts/chaewon/sys.nix +++ b/nix/hosts/chaewon/sys.nix @@ -156,6 +156,23 @@ }; }; + services.gitea-actions-runner = { + package = pkgs.forgejo-actions-runner; + instances.default = { + enable = true; + name = "monolith"; + url = "https://git.priime.dev"; + tokenFile = config.age.secrets.forgejo-runner-token.path; + # Default labels + labels = [ + "ubuntu-latest:docker://node:16-bullseye" + "ubuntu-22.04:docker://node:16-bullseye" + "ubuntu-20.04:docker://node:16-bullseye" + "ubuntu-18.04:docker://node:16-buster" + ]; + }; + }; + services.tailscale.enable = true; services.thelounge.enable = true;