9a0c9c615c
Co-authored-by: sinavir <sinavir@sinavir.fr> Reviewed-on: https://git.rz.ens.wtf/Klub-RZ/infrastructure/pulls/15 Co-authored-by: sinavir <maurice.debray@ens.fr> Co-committed-by: sinavir <maurice.debray@ens.fr>
10 lines
255 B
Nix
10 lines
255 B
Nix
{ config, pkgs, ... }: {
|
|
services.lychee = {
|
|
enable = true;
|
|
package = pkgs.rz.lychee-gallery;
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
website = "photos.ens.wtf";
|
|
settings.APP_URL = "https://${config.services.lychee.website}";
|
|
};
|
|
}
|