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