parent
79ecbf7209
commit
a6e2426877
1 changed files with 11 additions and 3 deletions
|
@ -9,16 +9,24 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services.gitea-actions-runner = {
|
services.gitea-actions-runner = {
|
||||||
package = pkgs.forgejo-actions-runner;
|
package = pkgs.gitea-actions-runner;
|
||||||
instances."${hostname}" = {
|
instances."${hostname}" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
name = "${hostname}";
|
name = "${hostname}";
|
||||||
labels = [ "self-hosted:host://-self-hosted" ];
|
labels = [ "self-hosted:host://-self-hosted" ];
|
||||||
url = "https://git.sysctl.io";
|
url = "https://git.sysctl.io";
|
||||||
tokenFile = /run/secrets/services/forgejo_token;
|
tokenFile = /run/secrets/services/forgejo_token;
|
||||||
hostPackages = with pkgs [
|
hostPackages = with pkgs; [
|
||||||
sudo
|
bash
|
||||||
coreutils
|
coreutils
|
||||||
|
curl
|
||||||
|
gawk
|
||||||
|
gitMinimal
|
||||||
|
gnused
|
||||||
|
nodejs
|
||||||
|
wget
|
||||||
|
|
||||||
|
sudo
|
||||||
tailscale
|
tailscale
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue