Add Out of Your Element

This commit is contained in:
Amanda Graven 2025-04-05 16:05:09 +02:00
parent b41fbbe6f8
commit 25391e3261
Signed by: amanda
GPG key ID: F747582C5608F4CB
8 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# 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;
};
}