rss stuff back on rx4
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 22s
Flake check / flake-check (pull_request) Successful in 24s

This commit is contained in:
sid 2026-05-05 22:35:46 +02:00
parent 1e52acd2b8
commit ed2f7e5773
5 changed files with 15 additions and 8 deletions

View file

@ -0,0 +1,20 @@
{
inputs,
constants,
pkgs,
...
}:
{
imports = [ inputs.synix.nixosModules.rss-bridge ];
services.rss-bridge = {
enable = true;
package = pkgs.unstable.rss-bridge;
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;
forceSSL = false;
};
};
}