adyya-flake/services/forgejo/runner.mod.nix

20 lines
No EOL
553 B
Nix

{
sucrose.modules = [
({pkgs, config, ...}: {
services.gitea-actions-runner= {
package = pkgs.forgejo-runner;
instances = {
${config.networking.hostName} = {
enable = true;
hostPackages = [ ];
labels = [ ];
name = config.networking.hostName;
settings = { };
tokenFile = config.sops.templates."forgejo_runner.env.secrets.yaml".path;
url = "https://git.collective-conciousness.monster";
};
};
};
})
];
}