nixos-config/machines/neo/matrix-sliding-sync/default.nix

16 lines
293 B
Nix
Raw Normal View History

2024-04-24 14:17:04 +02:00
{ config, ... }:
{
services.matrix-sliding-sync = {
enable = true;
createDatabase = true;
environmentFile = config.sops.secrets.matrix-sliding-sync-env.path;
settings = {
SYNCV3_SERVER = "http://127.0.0.1:8008";
SYNCV3_BINDADDR = "0.0.0.0:8009";
2024-04-24 14:17:04 +02:00
};
};
}