initial setup of forgejo runners

This commit is contained in:
Ittihadyya 2024-11-26 11:52:13 +02:00
parent 00e25b6f58
commit 13a7232909

View file

@ -0,0 +1,20 @@
{
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";
};
};
};
})
];
}