add forgejo runner

This commit is contained in:
XenGi 2026-08-20 22:54:48 +02:00
commit 6628ed9789
Signed by: xengi
SSH key fingerprint: SHA256:dM+fLZGsDvyv6kunjE8bGduL24VsCFB4LEOSdmRHdG0
7 changed files with 100 additions and 78 deletions

View file

@ -273,14 +273,24 @@
./hosts/git
];
};
nixosConfigurations."mqtt" = nixpkgs.lib.nixosSystem {
nixosConfigurations."forgejo-runner" = nixpkgs.lib.nixosSystem {
#system = "x86_64-linux";
#pkgs = import nixpkgs { inherit system; };
inherit system;
modules = [
agenix.nixosModules.default
{ environment.systemPackages = [ (agenix.packages.${system}.default) ]; }
./hosts/mqtt
{
age.secrets = {
forgejo-runner-token-snowden = {
file = ./secrets/forgejo-runner-token-snowden.age;
owner = "root";
group = "root";
mode = "0444";
};
};
}
./hosts/forgejo-runner
];
};
};