nixos/services/nginx_vHosts/tt-rss.nix

16 lines
158 B
Nix
Raw Permalink Normal View History

2024-11-21 13:05:30 +01:00
{
options,
config,
lib,
pkgs,
...
}:
with lib;
if config.services.tt-rss.enable then
{
enableACME = true;
forceSSL = true;
}
else
{ }