From 372219d3207f6bdd259ca573319f53c3a06ea1cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sun, 19 Jan 2025 13:00:37 +0100 Subject: [PATCH] feat(forgejo): add packages to runner --- services/forgejo/runner.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/forgejo/runner.nix b/services/forgejo/runner.nix index 576221a..ceb9d09 100644 --- a/services/forgejo/runner.nix +++ b/services/forgejo/runner.nix @@ -18,6 +18,14 @@ in tokenFile = ""; # dynamically retrieved from Forgejo (see further below) name = config.networking.hostName; labels = [ "native:host" ]; + hostPackages = with pkgs; [ + nix + gitMinimal + bash + coreutils + curl + nodejs + ]; settings = { container.network = "host"; };