nixos-config/profiles/servers/matrix-synapse.nix

116 lines
3.0 KiB
Nix
Raw Normal View History

{ pkgs, config, lib, ... }: {
2020-02-17 17:00:59 +04:00
services.matrix-synapse = {
enable = true;
2022-02-26 18:40:37 +04:00
allow_guest_access = false;
2020-02-17 17:00:59 +04:00
listeners = [{
bind_address = "0.0.0.0";
port = 13748;
resources = [
{
compress = true;
names = [ "client" ];
}
{
compress = false;
names = [ "federation" ];
}
];
type = "http";
2020-07-30 00:50:51 +04:00
tls = false;
x_forwarded = true;
2020-02-17 17:00:59 +04:00
}];
public_baseurl = "https://balsoft.ru";
2020-02-17 17:00:59 +04:00
server_name = "balsoft.ru";
2022-02-28 23:25:34 +04:00
app_service_config_files =
[ config.secrets-envsubst.mautrix-telegram-registration.substituted ];
2021-10-02 19:42:17 +04:00
};
2022-02-28 23:25:34 +04:00
services.postgresql.enable = true;
2020-08-04 15:51:37 +04:00
services.mautrix-telegram = {
enable = true;
environmentFile = toString config.secrets-envsubst.mautrix-telegram;
settings = {
appservice = {
address = "http://localhost:29317";
bot_avatar = "mxc://maunium.net/tJCRmUyJDsgRNgqhOgoiHWbX";
id = "telegram";
max_body_size = 1;
port = 29317;
};
bridge = {
alias_template = "tg_{groupname}";
allow_matrix_login = true;
bot_messages_as_notices = true;
catch_up = true;
command_prefix = "!tg";
image_as_file_size = 10;
max_document_size = 100;
max_initial_member_sync = -1;
max_telegram_delete = 10;
permissions = {
"*" = "relaybot";
"@balsoft:balsoft.ru" = "admin";
};
plaintext_highlights = true;
startup_sync = true;
username_template = "tg_{userid}";
};
homeserver = {
address = "https://matrix.balsoft.ru";
domain = "balsoft.ru";
verify_ssl = true;
};
telegram = { bot_token = "disabled"; };
};
};
secrets-envsubst.mautrix-telegram = {
2021-01-11 21:51:09 +04:00
secrets = [ "as_token" "hs_token" "api_id" "api_hash" ];
template = ''
MAUTRIX_TELEGRAM_APPSERVICE_AS_TOKEN=$as_token
MAUTRIX_TELEGRAM_APPSERVICE_HS_TOKEN=$hs_token
MAUTRIX_TELEGRAM_TELEGRAM_API_ID=$api_id
MAUTRIX_TELEGRAM_TELEGRAM_API_HASH=$api_hash
'';
};
secrets-envsubst.mautrix-telegram-registration = {
directory = "mautrix-telegram";
2021-01-11 21:51:09 +04:00
secrets = [ "as_token" "hs_token" ];
owner = "matrix-synapse";
template = builtins.toJSON {
as_token = "$as_token";
hs_token = "$hs_token";
id = "telegram";
namespaces = {
aliases = [{
exclusive = true;
regex = "#tg_.+:balsoft.ru";
}];
users = [{
exclusive = true;
regex = "@tg_.+:balsoft.ru";
}];
};
rate_limited = false;
sender_localpart = "telegrambot";
url = "http://localhost:29317";
};
2020-02-17 17:00:59 +04:00
};
2020-08-04 15:51:37 +04:00
systemd.services.mautrix-telegram.serviceConfig.DynamicUser =
lib.mkForce false;
systemd.services.mautrix-telegram.serviceConfig.User = "mautrix-telegram";
2021-10-02 19:42:17 +04:00
users.users.mautrix-telegram = {
group = "mautrix-telegram";
isSystemUser = true;
};
2022-02-28 23:25:34 +04:00
users.groups.mautrix-telegram = { };
2020-08-04 15:51:37 +04:00
2020-02-17 17:00:59 +04:00
users.users.matrix-synapse.name = lib.mkForce "matrix-synapse";
}