mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
23 lines
443 B
Nix
23 lines
443 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.pantalaimon =
|
||
|
{
|
||
|
# enable = true;
|
||
|
settings =
|
||
|
{
|
||
|
Default =
|
||
|
{
|
||
|
LogLevel = "Debug";
|
||
|
SSL = true;
|
||
|
UseKeyring = false;
|
||
|
};
|
||
|
local-matrix =
|
||
|
{
|
||
|
Homeserver = "https://matrix.redalder.org";
|
||
|
ListenAddress = "127.0.0.1";
|
||
|
ListenPort = 8008;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|