blob: e82e50f781676d9918d339ffd37d054a83ff142c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ lib, config, ... }:
{
services.pantalaimon-headless = {
instances = {
"nullring" = {
ssl = true;
homeserver = "https://matrix.nullring.xyz";
listenAddress = "localhost";
listenPort = 8009;
};
};
};
}
|