17 lines
455 B
Nix
17 lines
455 B
Nix
# Out of your Element prerequisites
|
|
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./ooye/module.nix
|
|
];
|
|
services.matrix-ooye = {
|
|
enable = true;
|
|
homeserver = "http://localhost:8008";
|
|
namespace = "_discord_";
|
|
discordClientSecretPath = builtins.toString config.secrets.files.ooye_client_secret.file;
|
|
discordTokenPath = builtins.toString config.secrets.files.ooye_token.file;
|
|
bridgeOrigin = "https://ooye.anarkafem.dev";
|
|
enableSynapseIntegration = true;
|
|
};
|
|
}
|