aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/conduit.nix
blob: 954e5fc44930c8d5f897dd3ba5b311f5a9320a70 (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.ret2pop.net";
      address = "0.0.0.0";
      port = 6167;
    };
  };
}