1
2
mirror of https://github.com/dali99/nixos-matrix-modules.git synced 2026-03-11 19:33:07 +01:00

1 Commits

Author SHA1 Message Date
eabdd9b4c2 sliding-sync: remove 2025-01-02 23:17:45 +01:00
2 changed files with 3 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
{ {
imports = [ imports = [
./synapse-module ./synapse-module
# TODO: Remove after 25.05 # TODO: Remove after 25.05
(lib.mkRemovedOptionModule [ "services" "matrix-synapse" "sliding-sync" ] '' (lib.mkRemovedOptionModule [ "services" "matrix-synapse" "sliding-sync" ] ''
`services.matrix-synapse.sliding-sync` is no longer necessary to use sliding-sync with synapse. `services.matrix-synapse.sliding-sync` is no longer necessary to use sliding-sync with synapse.

View File

@@ -19,6 +19,7 @@ let
inherit (cfg) plugins; inherit (cfg) plugins;
extras = [ extras = [
"postgres" "postgres"
"saml2"
"oidc" "oidc"
"systemd" "systemd"
"url-preview" "url-preview"
@@ -26,6 +27,7 @@ let
"jwt" "jwt"
"redis" "redis"
"cache-memory" "cache-memory"
"user-search"
]; ];
}; };