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