nixos/services/nginx_vHosts/tt-rss.nix
2024-11-22 14:00:18 +01:00

15 lines
158 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
with lib;
if config.services.tt-rss.enable then
{
enableACME = true;
forceSSL = true;
}
else
{ }