mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
14 lines
380 B
Nix
14 lines
380 B
Nix
{config, ...}: {
|
|
services.mx-puppet-discord = {
|
|
inherit (config.services.matrix-synapse) enable;
|
|
settings = {
|
|
bridge = {
|
|
bindAddress = "localhost";
|
|
domain = "kittywit.ch";
|
|
homeserverUrl = "https://yukari.gensokyo.zone";
|
|
};
|
|
provisioning.whitelist = ["@.*:kittywit.ch"];
|
|
relay.whitelist = ["@.*:kittywit.ch"];
|
|
};
|
|
};
|
|
}
|