15 lines
257 B
Nix
15 lines
257 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.matrix-sliding-sync = {
|
||
|
enable = true;
|
||
|
|
||
|
createDatabase = true;
|
||
|
|
||
|
environmentFile = config.sops.secrets.matrix-sliding-sync-env.path;
|
||
|
|
||
|
settings = {
|
||
|
SYNCV3_SERVER = "https://matrix.boskma.frl";
|
||
|
};
|
||
|
};
|
||
|
}
|