From 54ad3b07733942d475adb94e95a131664840b2a2 Mon Sep 17 00:00:00 2001 From: Lyes Saadi Date: Thu, 18 Dec 2025 15:26:26 +0100 Subject: [PATCH] multiple fixes --- modules/server/biggoron/default.nix | 2 +- modules/server/biggoron/runner.nix | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/server/biggoron/default.nix b/modules/server/biggoron/default.nix index efef8da..545627d 100644 --- a/modules/server/biggoron/default.nix +++ b/modules/server/biggoron/default.nix @@ -50,7 +50,7 @@ in # Add support for actions, based on act: https://github.com/nektos/act actions = { ENABLED = true; - DEFAULT_ACTIONS_URL = "github"; + DEFAULT_ACTIONS_URL = "https://code.forgejo.org"; }; # Sending emails is completely optional diff --git a/modules/server/biggoron/runner.nix b/modules/server/biggoron/runner.nix index 35d5926..10eef13 100644 --- a/modules/server/biggoron/runner.nix +++ b/modules/server/biggoron/runner.nix @@ -7,6 +7,11 @@ defaultNetwork.settings.dns_enabled = true; }; }; + + networking.firewall.trustedInterfaces = [ + "podman*" + ]; + services.gitea-actions-runner = { package = pkgs.forgejo-runner;