2024-04-22 23:00:05 +02:00
|
|
|
{ config, upkgs, ... }: {
|
2024-04-22 22:45:08 +02:00
|
|
|
imports = [ ../../common/optional/services/nginx.nix ];
|
|
|
|
|
|
|
|
services.nginx.virtualHosts."redlib.moonythm.dev" =
|
|
|
|
config.satellite.proxy config.services.invidious.port { };
|
|
|
|
|
|
|
|
services.libreddit = {
|
|
|
|
enable = true;
|
|
|
|
port = 8416;
|
2024-04-22 23:00:05 +02:00
|
|
|
# REASON: not in stable yet
|
|
|
|
package = upkgs.redlib;
|
2024-04-22 22:45:08 +02:00
|
|
|
};
|
|
|
|
}
|