move rss services to sid
This commit is contained in:
parent
0778974a50
commit
43244fd370
5 changed files with 23 additions and 3 deletions
|
|
@ -17,6 +17,8 @@
|
|||
./netdata.nix
|
||||
./nginx.nix
|
||||
./radicale.nix
|
||||
./rss-bridge.nix
|
||||
./rsshub-oci.nix
|
||||
./step-ca.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
14
hosts/sid/services/rss-bridge.nix
Normal file
14
hosts/sid/services/rss-bridge.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ inputs, constants, ... }:
|
||||
|
||||
{
|
||||
imports = [ inputs.synix.nixosModules.rss-bridge ];
|
||||
|
||||
services.rss-bridge = {
|
||||
enable = true;
|
||||
reverseProxy = {
|
||||
enable = true;
|
||||
subdomain = constants.services.rss-bridge.subdomain;
|
||||
forceSSL = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
19
hosts/sid/services/rsshub-oci.nix
Normal file
19
hosts/sid/services/rsshub-oci.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
outputs,
|
||||
constants,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [ outputs.nixosModules.rsshub-oci ];
|
||||
|
||||
services.rsshub-oci = {
|
||||
enable = true;
|
||||
inherit (constants.services.rsshub-oci) port;
|
||||
reverseProxy = {
|
||||
enable = true;
|
||||
subdomain = constants.services.rss-bridge.subdomain;
|
||||
forceSSL = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue