feat(gustave): enable fileUpload on the-lounge

This commit is contained in:
Julien Malka 2024-11-01 22:43:24 +01:00
parent 3fb9c26b9f
commit 41e85f9114
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -16,18 +16,18 @@ in
};
config = mkIf cfg.enable (
mkMerge [{
config = mkIf cfg.enable (mkMerge [
{
services.thelounge = {
enable = true;
public = false;
extraConfig.fileUpload.enable = true;
};
}
(mkIf cfg.nginx.enable (mkSubdomain cfg.nginx.subdomain port))
(mkIf cfg.nginx.enable (mkVPNSubdomain cfg.nginx.subdomain port))]);
(mkIf cfg.nginx.enable (mkSubdomain cfg.nginx.subdomain port))
(mkIf cfg.nginx.enable (mkVPNSubdomain cfg.nginx.subdomain port))
]);
}