2024-04-22 23:11:42 +02:00
|
|
|
{ config, lib, upkgs, ... }:
|
|
|
|
let port = 8416;
|
|
|
|
in
|
|
|
|
{
|
2024-04-22 22:45:08 +02:00
|
|
|
imports = [ ../../common/optional/services/nginx.nix ];
|
|
|
|
|
|
|
|
services.nginx.virtualHosts."redlib.moonythm.dev" =
|
2024-04-22 23:11:42 +02:00
|
|
|
config.satellite.proxy port { };
|
2024-04-22 22:45:08 +02:00
|
|
|
|
2024-04-22 23:11:42 +02:00
|
|
|
services.libreddit.enable = true;
|
|
|
|
systemd.services.libreddit.serviceConfig.ExecStart =
|
2024-04-23 00:31:29 +02:00
|
|
|
lib.mkForce "${upkgs.redlib}/bin/redlib --port ${toString port}";
|
2024-04-22 22:45:08 +02:00
|
|
|
}
|