about summary refs log tree commit diff stats
path: root/modules/by-name/re/redlib/module.nix
blob: 4d3c600e402c5ba9f328a48effbce3e6f5c19eac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  config,
  pkgsUnstable,
  lib,
  ...
}: let
  domain = "redlib.vhack.eu";

  cfg = config.vhack.redlib;
in {
  options.vhack.redlib = {
    enable = lib.mkEnableOption ''
      the redlib reddit frontend
    '';
  };

  config = lib.mkIf cfg.enable {
    services.redlib = {
      enable = true;
      package = pkgsUnstable.redlib;
      port = 8080;
      address = "127.0.0.1";
      openFirewall = false;
    };

    vhack.anubis.instances."${domain}".target = "http://127.0.0.1:${toString config.services.redlib.port}";
  };
}