ark/hosts/wolumonde/modules/gitea-act.nix

23 lines
447 B
Nix
Raw Normal View History

2024-09-26 20:41:56 +03:00
{pkgs, config, ...}: {
2024-09-26 18:16:02 +03:00
services.gitea-actions-runner.instances."thermex" = {
2024-09-26 20:41:56 +03:00
enable = true;
2024-09-26 18:16:02 +03:00
url = config.services.gitea.settings.server.ROOT_URL;
name = "thermex";
tokenFile = config.age.secrets.giteaActRunnerToken.path;
2024-09-26 20:14:07 +03:00
labels = ["native:host"];
2024-09-26 20:41:56 +03:00
hostPackages = with pkgs; [
bash
coreutils
curl
gawk
2024-09-26 20:44:49 +03:00
git
2024-09-26 20:41:56 +03:00
git-lfs
gnused
nodejs
wget
2024-09-26 21:00:11 +03:00
gnutar
xz
2024-09-26 20:41:56 +03:00
];
2024-09-26 18:16:02 +03:00
};
}