Compare commits

...

2 commits

Author SHA1 Message Date
86242c53bb
feat: add forgejo runner
Some checks failed
/ test (push) Failing after 1s
2025-01-31 11:38:30 +01:00
69994cbdd5
ci: check flake on push
Some checks failed
/ test (push) Failing after 1s
2025-01-31 11:15:33 +01:00
4 changed files with 30 additions and 6 deletions

View file

@ -1,6 +1,8 @@
on: [push]
jobs:
test:
runs-on: debian-latest
runs-on: nix
steps:
- run: echo All Good
- uses: actions/checkout@v4
- run: nix --experimental-features 'nix-command flakes' flake check --verbose

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
];
}