dotfiles/home-manager/modules/pantalaimon.nix
2023-06-29 18:59:38 +02:00

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;
};
};
};
}