test workflow
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Jana Dönszelmann 2025-08-20 11:28:00 +02:00
parent 2d9feaa634
commit 4bbb51ef42
No known key found for this signature in database
2 changed files with 31 additions and 0 deletions

6
.github/workflows/deploy.yml vendored Normal file
View file

@ -0,0 +1,6 @@
on: [push]
jobs:
test:
runs-on: docker
steps:
- run: echo All good!

View file

@ -73,4 +73,29 @@ in
};
mailerPasswordFile = config.sops.secrets.forgejo.path;
};
services.gitea-actions-runner = {
package = pkgs.forgejo-runner;
instances.fili = {
enable = true;
name = "forgejo-runner-01";
token = "SutcrCJ3ULoE5LBj9Tm8zkvTRDEJCpbvpe7FEJHC";
url = "https://git.donsz.nl/";
labels = [
"node-22:docker://node:22-bookworm"
"nixos-latest:docker://nixos/nix"
];
settings = {};
};
};
virtualisation.docker = {
daemon.settings = {
fixed-cidr-v6 = "fd00::/80";
ipv6 = true;
};
};
networking.firewall.trustedInterfaces = [ "br-+" ];
}