fruitbasket/modules/forgejo/actions.nix

20 lines
565 B
Nix
Raw Normal View History

2024-04-11 15:31:31 +02:00
{ pkgs, ... }:
{
services.gitea-actions-runner = {
package = pkgs.forgejo-actions-runner;
instances."quitte" = {
enable = true;
labels = [
# provide a debian base with nodejs for actions
"debian-latest:docker://node:18-bullseye"
# fake the ubuntu name, because node provides no ubuntu builds
"ubuntu-latest:docker://node:18-bullseye"
# provide native execution on the host
"native:host"
];
#TODO get a token from git.ifsr.de and use it
# tokenfile = /"dev/null";
};
};
}