From 00e8e764ac8fe393507c9386900226d63ffe1a9a Mon Sep 17 00:00:00 2001 From: Peter Selby Date: Sat, 25 Dec 2021 11:53:21 -0800 Subject: [PATCH] Should be a string, not a list --- lib/fudo/jabber.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fudo/jabber.nix b/lib/fudo/jabber.nix index 1d343f0..ba25c1b 100644 --- a/lib/fudo/jabber.nix +++ b/lib/fudo/jabber.nix @@ -84,7 +84,7 @@ let certfiles = concatMapAttrsToList (site: siteOpts: if (siteOpts.enableACME) then - (hostCerts [siteOpts.hostname]) + (hostCerts siteOpts.hostname) else []) cfg.sites;