blob: 501299aef4968f78ac9bf59e57740741ec641f7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
config,
pkgs,
lib,
...
}:
let
cfg = config.services.matrix-synapse;
in
{
services.matrix-synapse = lib.mkIf cfg.enableBackgroundWorker {
settings = {
instance_map = {
background = {
path = "/run/matrix-synapse/background.sock";
};
};
run_background_tasks_on = "background";
};
workers = {
background = {
worker_app = "synapse.app.generic_worker";
worker_listeners = [
{
type = "http";
path = "/run/matrix-synapse/background.sock";
resources = [
{
names = [ "replication" ];
compress = false;
}
];
}
];
};
};
};
}
|