33 lines
710 B
Nix
33 lines
710 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
sops.secrets.forgejo-runner-token = {};
|
|
services.gitea-actions-runner = {
|
|
package = pkgs.forgejo-actions-runner;
|
|
instances.snowflake = {
|
|
settings = {
|
|
container = {
|
|
network = "host";
|
|
};
|
|
};
|
|
enable = true;
|
|
name = config.networking.hostName;
|
|
token = config.sops.secrets.forgejo-runner-token.path;
|
|
url = "https://git.flake.sh";
|
|
labels = [
|
|
"debian-latest:docker://node:18-bullseye"
|
|
"ubuntu-latest:docker://node:18-bullseye"
|
|
#"native:host"
|
|
];
|
|
hostPackages = with pkgs; [
|
|
bash
|
|
curl
|
|
coreutils
|
|
wget
|
|
gitMinimal
|
|
];
|
|
};
|
|
};
|
|
}
|