aboutsummaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-12-09 21:35:40 +0900
committersefidel <contact@sefidel.net>2023-12-09 21:42:32 +0900
commit75ca58a5c5b326b2cee3403634f71ad6da3217e8 (patch)
treecd4491d049931562babaf3b6668d219245f3d6f1 /systems
parent4a71d7b81260dca99ce3bd2f4697b15e67f80b24 (diff)
downloadinfra-75ca58a5c5b326b2cee3403634f71ad6da3217e8.zip
feat(systems/cobalt): enable rss-bridge
Diffstat (limited to 'systems')
-rw-r--r--systems/cobalt/default.nix9
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 = {