15 lines
158 B
Nix
15 lines
158 B
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
if config.services.tt-rss.enable then
|
|
{
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
}
|
|
else
|
|
{ }
|