mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
519d7b3841
Signed-off-by: Magic_RB <magic_rb@redalder.org>
24 lines
466 B
Nix
24 lines
466 B
Nix
{ ... }:
|
|
{
|
|
services.pantalaimon = {
|
|
enable = true;
|
|
settings =
|
|
{
|
|
Default =
|
|
{
|
|
LogLevel = "Info";
|
|
SSL = true;
|
|
};
|
|
local-matrix =
|
|
{
|
|
Homeserver = "https://matrix.redalder.org";
|
|
ListenAddress = "127.0.0.1";
|
|
ListenPort = 8008;
|
|
UseKeyring = false;
|
|
IgnoreVerification = true;
|
|
SSL = false;
|
|
};
|
|
};
|
|
};
|
|
}
|