summaryrefslogtreecommitdiff
path: root/nix/modules/home/pantalaimon.nix
blob: 35e72c39990e1507c2cdbc594f1c5b09502c8926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, config, ... }:
{
  services.pantalaimon = {
    enable = lib.mkDefault false;
    settings = {
      Default = {
        LogLevel = "Debug";
        SSL = true;
      };

      local-matrix = {
        Homeserver = "https://matrix.nullring.xyz";
        ListenAddress = "127.0.0.1";
        ListenPort = 8008;
      };
    };

  };
}