2024-04-22 23:11:42 +02:00
|
|
|
{ config, lib, upkgs, ... }:
|
2024-06-13 15:47:36 +02:00
|
|
|
let port = config.satellite.ports.redlib;
|
2024-04-22 23:11:42 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
services.libreddit.enable = true;
|
2024-06-13 15:47:36 +02:00
|
|
|
satellite.nginx.at.redlib.port = port;
|
2024-04-22 23:11:42 +02:00
|
|
|
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
|
|
|
}
|