summaryrefslogtreecommitdiff
path: root/nix/modules/home/pantalaimon.nix
blob: b523865ff211c263b116e91d368d5b62cfdb94ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, config, ... }:
{
  services.pantalaimon = {
    enable = lib.mkDefault config.monorepo.profiles.graphics.enable;
    settings = {
      Default = {
        LogLevel = "Debug";
        SSL = true;
      };
      local-matrix = {
        Homeserver = "https://matrix.${config.monorepo.vars.orgHost}";
        ListenAddress = "127.0.0.1";
        ListenPort = "8008";
      };
    };
  };
}