summary refs log tree commit diff
path: root/host/Rory-nginx/services/matrix/conduit.nix
blob: 4916a0c93c008b5975a86afe883bcfec3c935541 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, pkgs, lib, conduit, ... }:

{
  services.matrix-conduit = {
    package = conduit.packages.${pkgs.system}.default;
    enable = true;
    settings.global = {
      address = "127.0.0.1";
      server_name = "conduit.rory.gay";
      database_backend = "rocksdb";
      enable_lightning_bolt = true;
      max_concurrent_requests = 1000;
      allow_check_for_updates = false;
    };
  };
  system.stateVersion = "22.11"; # DO NOT EDIT!
}