diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-10-29 01:00:44 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-10-29 01:00:44 +0900 |
commit | 35d35cfcf1f1cfd0dd054ce0355943540bf8ebbe (patch) | |
tree | 8d35416c882e821ed86a2040834194027674f82e | |
parent | 32353e3bad77d13840aa8d622cf50931134990fe (diff) | |
download | nixos-conf-35d35cfcf1f1cfd0dd054ce0355943540bf8ebbe.tar.gz |
Support Third Room
-rw-r--r-- | matrix.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/matrix.nix b/matrix.nix index 89936e7..6c1d057 100644 --- a/matrix.nix +++ b/matrix.nix @@ -56,7 +56,10 @@ in { mscs = [ "msc2946" ]; # spaces summary }; room_server.database.connection_string = dburl; - sync_api.database.connection_string = dburl; + sync_api = { + database.connection_string = dburl; + search.enable = true; + }; user_api.account_database.connection_string = dburl; user_api.device_database.connection_string = dburl; }; |