blob: e3ccc6624c037d271dbd92e36f586c9263ff61bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ config, pkgs, lib, conduit-flake, ... }:
{
imports =
[
../../modules/base-server.nix
];
services.matrix-conduit = {
package = conduit-flake;
enable = true;
settings.global = {
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!
}
|