mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|