nixos/jitsi-meet: fix cfg.caddy.enable

This fixes the following error:

```
error: failed processing files:
        FailedJobs(
        "static/404.html": Permission denied (os error 13) at path "/build/static/.tmpRMzDXu"
)
```
This commit is contained in:
emilylange 2023-11-29 22:51:35 +01:00 committed by Yt
parent 6c4556515f
commit 9a821ebe0f

View File

@ -479,7 +479,7 @@ in
extraConfig =
let
templatedJitsiMeet = pkgs.runCommand "templated-jitsi-meet" { } ''
cp -R ${pkgs.jitsi-meet}/* .
cp -R --no-preserve=all ${pkgs.jitsi-meet}/* .
for file in *.html **/*.html ; do
${pkgs.sd}/bin/sd '<!--#include virtual="(.*)" -->' '{{ include "$1" }}' $file
done