dotfiles/home-manager/modules/pantalaimon.nix
Magic_RB c8f88104a3
IgnoreVerification in pantalaimon
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-02-25 23:58:22 +01:00

24 lines
484 B
Nix

{ ... }:
{
services.pantalaimon =
{
# enable = true;
settings =
{
Default =
{
LogLevel = "Debug";
SSL = true;
UseKeyring = false;
IgnoreVerification = true;
};
local-matrix =
{
Homeserver = "https://matrix.redalder.org";
ListenAddress = "127.0.0.1";
ListenPort = 8008;
};
};
};
}