nixos-config/linux/nebula/conduit.nix
2023-10-09 10:44:07 -07:00

11 lines
196 B
Nix

{ config, ... }:
{
services.matrix-conduit = {
enable = true;
settings.global = {
address = config.constants.localhost;
server_name = config.constants.domain;
};
};
}