nix/nixos/common/services/forgejo-runner.nix

34 lines
993 B
Nix
Raw Normal View History

2023-12-06 06:47:34 +01:00
{ pkgs, config, hostname, ... }: {
2023-12-06 06:51:24 +01:00
2023-12-06 07:14:59 +01:00
# Set up the secret for the password:
sops.secrets."services/forgejo_token" = {
2023-12-25 03:00:13 +01:00
owner = "root";
mode = "0444"; # gitea-actions-runner uses "DynamicUser"
2023-12-06 07:14:59 +01:00
sopsFile = ../../../secrets/secrets.yaml;
2023-12-25 03:00:13 +01:00
restartUnits = [ "gitea-actions-runner-${hostname}.service" ];
2023-12-06 07:14:59 +01:00
};
2023-12-06 06:47:34 +01:00
services.gitea-actions-runner = {
2023-12-25 04:07:35 +01:00
package = pkgs.forgejo-actions-runner;
instances."${hostname}" = {
enable = true;
name = "${hostname}";
2023-12-25 03:55:19 +01:00
labels = [ "self-hosted:host://-self-hosted" ];
url = "https://git.sysctl.io";
2023-12-25 03:11:24 +01:00
tokenFile = /run/secrets/services/forgejo_token;
2023-12-25 04:08:32 +01:00
hostPackages = with pkgs; [
2023-12-25 04:17:06 +01:00
bash
2023-12-25 04:07:35 +01:00
coreutils
2023-12-25 04:17:06 +01:00
curl
gawk
gitMinimal
gnused
nodejs
wget
sudo
2023-12-25 04:07:35 +01:00
tailscale
];
2023-12-25 04:07:49 +01:00
};
2023-12-06 06:47:34 +01:00
};
}