mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-03 21:46:14 +01:00
bcc3aaafba
Signed-off-by: magic_rb <magic_rb@redalder.org>
21 lines
430 B
Nix
21 lines
430 B
Nix
{pkgs, ...}: {
|
|
services.pantalaimon = {
|
|
enable = true;
|
|
package = pkgs.pantalaimon;
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|