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