2023-08-31 01:55:45 +03:00
|
|
|
{ config, depot, ... }:
|
2021-10-16 21:23:35 +03:00
|
|
|
let
|
2023-08-31 01:55:45 +03:00
|
|
|
inherit (depot.lib.meta) domain;
|
2021-10-16 21:23:35 +03:00
|
|
|
in
|
|
|
|
{
|
|
|
|
age.secrets = {
|
|
|
|
matrix-appservice-discord-token = {
|
2023-06-05 22:50:34 +03:00
|
|
|
file = ../../../../secrets/matrix-appservice-discord-token.age;
|
2021-10-16 21:23:35 +03:00
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
mode = "0400";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
services.matrix-appservice-discord = {
|
|
|
|
enable = true;
|
|
|
|
environmentFile = config.age.secrets.matrix-appservice-discord-token.path;
|
|
|
|
settings = {
|
|
|
|
bridge = {
|
|
|
|
inherit domain;
|
|
|
|
homeserverUrl = "https://matrix.${domain}:443";
|
|
|
|
disablePresence = false;
|
|
|
|
disableTypingNotifications = false;
|
|
|
|
disableDeletionForwarding = false;
|
|
|
|
enableSelfServiceBridging = true;
|
|
|
|
disableReadReceipts = false;
|
|
|
|
disableJoinLeaveNotifications = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|