commit eb6f3c8e8a00e7b2ed928a4ee20b5e61070480a4 parent 2ad85a7b76e40e9f6715a9b68c0e7cf355fccb89 Author: MTRNord <mtrnord1@gmail.com> Date: Thu, 10 Aug 2023 23:07:57 +0200 Actually enable service Diffstat:
| M | nixos/worker-1/configuration.nix | | | 13 | ++++++++----- |
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -261,11 +261,14 @@ # forgejo virtualisation.podman.enable = true; - services.gitea-actions-runner.instances = { - nordgedanken = { - url = "https://git.nordgedanken.dev"; - tokenFile = config.sops.secrets.forgejo_runner_token.path; - labels = []; + services.gitea-actions-runner = { + enable = true; + instances = { + nordgedanken = { + url = "https://git.nordgedanken.dev"; + tokenFile = config.sops.secrets.forgejo_runner_token.path; + labels = [ ]; + }; }; };