From 5ee92ae6417c9351b69e021f93fac63bed954718 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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/services/forgejo/runner.nix b/services/forgejo/runner.nix index 576221a..14a0126 100644 --- a/services/forgejo/runner.nix +++ b/services/forgejo/runner.nix @@ -18,6 +18,13 @@ in tokenFile = ""; # dynamically retrieved from Forgejo (see further below) name = config.networking.hostName; labels = [ "native:host" ]; + hostPackages = with pkgs; [ + nix + gitMinimal + bash + coreutils + curl + ]; settings = { container.network = "host"; };