From 6bfeb835c2f6822cce4580f9b272b9480e8276c5 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Fri, 8 Dec 2023 17:37:28 +0100 Subject: [PATCH] fix: type INI atom (null, bool, int, float or string) option `services.gitea.settings.webhook.ALLOWED_HOST_LIST' is not of type `INI atom (null, bool, int, float or string)' --- hosts/nachtigall/apps/forgejo.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hosts/nachtigall/apps/forgejo.nix b/hosts/nachtigall/apps/forgejo.nix index 080b931..70c965b 100644 --- a/hosts/nachtigall/apps/forgejo.nix +++ b/hosts/nachtigall/apps/forgejo.nix @@ -88,11 +88,7 @@ # https://forgejo.org/docs/latest/admin/config-cheat-sheet/#webhook-webhook webhook = { - ALLOWED_HOST_LIST = [ - "loopback" - "external" - "*.pub.solar" - ]; + ALLOWED_HOST_LIST = "loopback,external,*.pub.solar"; }; # See https://forgejo.org/docs/latest/admin/actions/