services/forgejo-runner: add nix to path #4

Merged
nrabulinski merged 2 commits from nrabulinski/forgejo-ci into main 2025-03-19 18:23:26 +01:00 AGit
Showing only changes of commit 00a797fd09 - Show all commits

View file

@ -5,7 +5,12 @@
"youko"
];
config =
{ config, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
age.secrets.forgejo-runner-token.file = ../secrets/forgejo-token.age;
@ -19,6 +24,9 @@
settings = {
container.network = "bridge";
};
hostPackages = lib.mkOptionDefault [
pkgs.nix
];
labels = [
"ubuntu-latest:docker://node:16-bullseye"
"ubuntu-22.04:docker://node:16-bullseye"