sid.ovh/hosts/rx4/services/rss-bridge.nix
sid b3d8f80020
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 18s
Flake check / flake-check (pull_request) Successful in 18s
overlay for rss-bridge v2025-06-03
2026-05-05 22:48:30 +02:00

14 lines
270 B
Nix

{ inputs, constants, ... }:
{
imports = [ inputs.synix.nixosModules.rss-bridge ];
services.rss-bridge = {
enable = true;
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;
forceSSL = false;
};
};
}