61 lines
1.5 KiB
Nix
61 lines
1.5 KiB
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
../../modules/matrix/mautrix-whatsapp.nix
|
|
];
|
|
|
|
services.mautrix-whatsapp = {
|
|
enable = true;
|
|
environmentFile = pkgs.emptyFile;
|
|
settings = {
|
|
homeserver = {
|
|
address = "https://matrix.chir.rs";
|
|
domain = "chir.rs";
|
|
};
|
|
appservice = {
|
|
database = {
|
|
type = "postgres";
|
|
uri = "postgres:///mautrix_whatsapp?sslmode=disable&host=/run/postgresql";
|
|
};
|
|
};
|
|
metrics = {
|
|
enabled = true;
|
|
listen = "[::]:29319";
|
|
};
|
|
bridge = {
|
|
displayname_template = "{displayname}";
|
|
personal_filtering_spaces = true;
|
|
delivery_receipts = true;
|
|
hystory_sync = {
|
|
backfill = true;
|
|
request_full_sync = true;
|
|
};
|
|
send_presence_on_typing = true;
|
|
double_puppet_server_map = { };
|
|
login_shared_secret_map = { };
|
|
private_chat_portal_meta = true;
|
|
mute_bridging = true;
|
|
pinned_tag = "m.favourite";
|
|
archive_tag = "m.lowpriority";
|
|
allow_user_invite = true;
|
|
disappearing_messages_in_groups = true;
|
|
url_previews = true;
|
|
encryption = {
|
|
allow = true;
|
|
default = true;
|
|
};
|
|
permissions = {
|
|
"@lotte:chir.rs" = "admin";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
services.postgresql.ensureDatabases = [
|
|
"mautrix_whatsapp"
|
|
];
|
|
services.postgresql.ensureUsers = [{
|
|
name = "mautrix-whatsapp";
|
|
ensurePermissions = {
|
|
"DATABASE mautrix_whatsapp" = "ALL PRIVILEGES";
|
|
};
|
|
}];
|
|
}
|