summaryrefslogtreecommitdiff
path: root/nix/modules/matrix-appservice-irc.nix
blob: 518cdde36e90e151375dc2fc11b83bdc5d0cb2b8 (plain)
1
2
3
4
5
6
7
8
9
10
{ lib, config, ... }:
{
  enable = lib.mkDefault config.monorepo.profiles.server.enable;
  registrationUrl = "localhost";

  settings = {
    homeserver.url = "https://matrix.nullring.xyz";
    homserver.domain = "matrix.nullring.xyz";
  };
}