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

20 lines
No EOL
494 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 = { };
url = "https://git.collective-conciousness.monster";
};
};
};
})
];
}