feat: add forgejo runner
Some checks failed
/ test (push) Failing after 1s

This commit is contained in:
Nydragon 2025-01-31 11:38:30 +01:00
parent c744024c0c
commit 29697934da
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 26 additions and 4 deletions

View file

@ -16,13 +16,24 @@ in
"L+ ${config.services.forgejo.customDir}/public/robots.txt - - - - ${robots.outPath}"
];
services.gitea-actions-runner = {
instances."raptus" = {
enable = true;
name = "raptus";
tokenFile = config.age.secrets.forgejo-runner-token.age;
url = "https://git.ccnlc.eu";
labels = [
"debian-latest:docker://node:18-bullseye"
"nix:docker://ghcr.io/nydragon/runner:latest"
];
};
};
virtualisation.docker.enable = true;
networking.firewall.allowedTCPPorts = [ sshPort ];
services.nginx = {
enable = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
clientMaxBodySize = "50M";
virtualHosts.${domain} = {
locations."/" = {
proxyPass = "http://unix:/run/forgejo/forgejo.sock";

View file

@ -0,0 +1,7 @@
age-encryption.org/v1
-> ssh-ed25519 b3HlPA dBkOMVkozSkc7hGVGBV8KanAOqT57d/FGTyPQnZGQBM
4MGa6vkR/XtD6scjA2giiDINdfFH4Y9Ebn/Pki7bxPM
-> ssh-ed25519 WcjW5A HOrY4chLCOJJQmZqn2ax8sBWqFi1MnzwUmT3qY1+Uxk
4L36W1eX4rfzH0e6YWtJ4hEl5FoKA9Okd1CYNWP1yXU
--- syAd07l1R2c15ZVprT+nEw0IO2o/EAWPG0KieTVQxOE
­ÆNÎh†ùN‰(sfE kS(¤Â)ž_kÐö K/iŽš˜<C5A1>eX/Ìí8 „ÒhÚá«S øÁ”¼Œ‡É~‡éjœÒ

View file

@ -16,4 +16,8 @@ in
"rustypaste.age".publicKeys = devices ++ [ ny ];
"navidrome.age".publicKeys = devices ++ [ ny ];
"adguard-dns-list.age".publicKeys = devices ++ [ ny ];
"forgejo-runner-token.age".publicKeys = [
raptus
ny
];
}