aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/conduit.nix
blob: 623cb7f616285132c53ea1e56ff636877d408b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, ... }:
{
  services.matrix-conduit = {
    enable = lib.mkDefault config.monorepo.profiles.server.enable;
    # random comment
    settings.global = {
      server_name = "matrix.${config.monorepo.vars.remoteHost}";
      address = "0.0.0.0";
      port = 6167;
    };
  };
}