12 lines
196 B
Nix
12 lines
196 B
Nix
|
|
{ config, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
services.matrix-conduit = {
|
||
|
|
enable = true;
|
||
|
|
settings.global = {
|
||
|
|
address = config.constants.localhost;
|
||
|
|
server_name = config.constants.domain;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|