From 86a9f777adb9d218e020c5d66821a56e02925008 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Tue, 3 Mar 2026 22:54:14 -0800 Subject: [PATCH] Use the hosts overlays in gitea container (for attic patches) --- common/server/gitea-actions-runner.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/server/gitea-actions-runner.nix b/common/server/gitea-actions-runner.nix index f3d5c7d..4c4f071 100644 --- a/common/server/gitea-actions-runner.nix +++ b/common/server/gitea-actions-runner.nix @@ -8,6 +8,7 @@ let thisMachineIsARunner = config.thisMachine.hasRole."gitea-actions-runner"; + hostOverlays = config.nixpkgs.overlays; containerName = "gitea-runner"; giteaRunnerUid = 991; giteaRunnerGid = 989; @@ -32,6 +33,7 @@ in config = { config, lib, pkgs, ... }: { system.stateVersion = "25.11"; + nixpkgs.overlays = hostOverlays; services.gitea-actions-runner.instances.inst = { enable = true;