cluster/services/matrix: add dns records
This commit is contained in:
parent
38d22c1964
commit
cb8744b99a
1 changed files with 12 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ depot, ... }:
|
||||
{ config, depot, ... }:
|
||||
|
||||
{
|
||||
services.matrix = {
|
||||
|
@ -16,4 +16,15 @@
|
|||
address = "https://matrix.${depot.lib.meta.domain}/_matrix/federation/v1/version";
|
||||
module = "https2xx";
|
||||
};
|
||||
|
||||
dns.records = let
|
||||
homeserverAddrs = map
|
||||
(node: depot.hours.${node}.interfaces.primary.addrPublic)
|
||||
config.services.matrix.nodes.homeserver;
|
||||
in {
|
||||
matrix.target = homeserverAddrs;
|
||||
chat.target = homeserverAddrs;
|
||||
stun.target = homeserverAddrs;
|
||||
turn.target = homeserverAddrs;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue