blob: 0b1dcc2662d29c71d4b2a50faf88061ae5c48b2b (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{ config, lib, ... }:
# TODO: rename
with lib;
let
cfg = config.modules.services.matrix-moderation;
in
{
options.modules.services.matrix-moderation = {
enable = mkEnableOption "matrix-moderation";
domain = mkOption { type = types.str; };
realHost = mkOption { type = types.str; default = "matrix.${cfg.domain}"; };
secrets.userPassword = mkOption { type = types.str; description = "path to the mjolnir password"; };
};
config = mkIf cfg.enable {
services.mjolnir = {
enable = true;
homeserverUrl = "http://127.0.0.1:8008";
pantalaimon.enable = true;
# NOTE: this option currently has no effect
pantalaimon.options = {
listenAddress = "127.0.0.1";
listenPort = 8011;
};
pantalaimon.username = "abuse";
pantalaimon.passwordFile = cfg.secrets.userPassword;
managementRoom = "#moderation:${cfg.domain}";
settings = {
# TODO: get rid of hardcoded values
homeserverUrl = "http://127.0.0.1:8011";
automaticallyRedactForReasons = [
"spam"
"advertising"
"unwanted"
];
};
};
# TODO: get rid of hardcoded values
systemd.services.mjolnir.after = [ "matrix-synapse.service" ];
# Override the pantalaimon options, since the mjolnir one is broken
services.pantalaimon-headless.instances."mjolnir" = {
listenAddress = "127.0.0.1";
listenPort = 8011;
};
services.matrix-synapse.plugins = with config.services.matrix-synapse.package.plugins; [ matrix-synapse-mjolnir-antispam ];
environment.persistence."/persist".directories = [
"/var/lib/private/pantalaimon-mjolnir"
"/var/lib/mjolnir"
];
};
}
|