nix/nixos/common/services/forgejo-runner.nix
iFargle 3c9a88b35d
Some checks failed
deploy-rs / deploy-rs (push) Failing after 0s
ssh-test / ssh-test (push) Failing after 18s
test
2023-12-25 12:02:46 +09:00

21 lines
No EOL
705 B
Nix

{ pkgs, config, hostname, ... }: {
# Set up the secret for the password:
sops.secrets."services/forgejo_token" = {
owner = "root";
mode = "0444"; # gitea-actions-runner uses "DynamicUser"
sopsFile = ../../../secrets/secrets.yaml;
restartUnits = [ "gitea-actions-runner-${hostname}.service" ];
};
services.gitea-actions-runner = {
package = pkgs.gitea-actions-runner;
instances."${hostname}" = {
enable = true;
name = "${hostname}";
labels = [ "self-hosted:host://-self-hosted" ];
url = "https://git.sysctl.io";
tokenFile = /run/secrets/services/forgejo_token;
};
};
}