rss stuff back on rx4
This commit is contained in:
parent
1e52acd2b8
commit
ed2f7e5773
5 changed files with 15 additions and 8 deletions
|
|
@ -18,6 +18,8 @@
|
|||
./nginx.nix
|
||||
./open-webui-oci.nix
|
||||
./print-server.nix
|
||||
./rss-bridge.nix
|
||||
./rsshub-oci.nix
|
||||
./vaultwarden.nix
|
||||
|
||||
# ./alditalk-extender.nix # FIXME
|
||||
|
|
|
|||
20
hosts/rx4/services/rss-bridge.nix
Normal file
20
hosts/rx4/services/rss-bridge.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
14
hosts/rx4/services/rsshub-oci.nix
Normal file
14
hosts/rx4/services/rsshub-oci.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
outputs,
|
||||
constants,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [ outputs.nixosModules.rsshub-oci ];
|
||||
|
||||
services.rsshub-oci = {
|
||||
enable = true;
|
||||
inherit (constants.services.rsshub-oci) port;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue