diff options
Diffstat (limited to 'systems/cobalt')
-rw-r--r-- | systems/cobalt/default.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/systems/cobalt/default.nix b/systems/cobalt/default.nix index 849c3ab..088d08b 100644 --- a/systems/cobalt/default.nix +++ b/systems/cobalt/default.nix @@ -230,6 +230,7 @@ in "webmail" "todo" "rss" + "rss-bridge" ]; }; "nand.moe" = { @@ -323,10 +324,16 @@ in domain = "exotic.sh"; realHost = "todo.exotic.sh"; }; - services.rss = { + services.rss = rec { enable = true; domain = "exotic.sh"; realHost = "rss.exotic.sh"; + bridge = { + enable = true; + inherit domain; + realHost = "rss-bridge.exotic.sh"; + whitelist = [ "*" ]; + }; secrets.admin-password = config.sops.secrets.freshrss-admin-pass.path; }; services.searx = { |