From eccac4d4a213935419ee4eb6db30f2c8764c093b Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Thu, 23 Oct 2025 02:30:09 +0200 Subject: [PATCH] feat: gitea runner cache config --- hosts/fw/modules/gitea-vm.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/fw/modules/gitea-vm.nix b/hosts/fw/modules/gitea-vm.nix index 33155cb..734f306 100644 --- a/hosts/fw/modules/gitea-vm.nix +++ b/hosts/fw/modules/gitea-vm.nix @@ -62,6 +62,11 @@ in { container = { network = "podman"; }; + cache = { + enabled = true; + host = "${config.networkPrefix}.97.5${toString idx}"; # LAN IP of the machine running act_runner + port = 8088; # any free TCP port + }; }; };