sid.ovh/hosts/sid/services/rss-bridge.nix
sid 43244fd370
Some checks failed
Flake check / flake-check (pull_request) Failing after 6s
Build hosts / build-hosts (pull_request) Failing after 10s
move rss services to sid
2026-05-05 19:08:32 +02:00

14 lines
269 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 = true;
};
};
}