teutat3s
2ca0bd7c3e
All checks were successful
Flake checks / Check (pull_request) Successful in 2m36s
132 lines
4 KiB
Nix
132 lines
4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
# Find element in list config.services.matrix-synapse.settings.listeners.*.resources
|
|
# that sets names = "client"
|
|
nameHasClient = name: name == "client";
|
|
resourceHasClient = resource: builtins.any nameHasClient resource.names;
|
|
listenerWithClient =
|
|
lib.findFirst (listener: builtins.any resourceHasClient listener.resources)
|
|
(throw "Found no matrix-synapse.settings.listeners.*.resources.*.names containing string client")
|
|
config.services.matrix-synapse.settings.listeners;
|
|
synapseClientPort = "${toString listenerWithClient.port}";
|
|
in
|
|
{
|
|
systemd.services.matrix-appservice-irc.serviceConfig.SystemCallFilter = lib.mkForce [
|
|
"@system-service @pkey"
|
|
"~@privileged @resources"
|
|
"@chown"
|
|
];
|
|
services.matrix-appservice-irc = {
|
|
enable = true;
|
|
localpart = "irc_bot";
|
|
port = 8010;
|
|
registrationUrl = "http://localhost:8010";
|
|
settings = {
|
|
homeserver = {
|
|
domain = "${config.pub-solar-os.networking.domain}";
|
|
url = "http://127.0.0.1:${synapseClientPort}";
|
|
media_url = "https://matrix.${config.pub-solar-os.networking.domain}";
|
|
enablePresence = false;
|
|
};
|
|
ircService = {
|
|
ident = {
|
|
address = "::";
|
|
enabled = false;
|
|
port = 1113;
|
|
};
|
|
logging = {
|
|
level = "debug";
|
|
maxFiles = 5;
|
|
toCosole = true;
|
|
};
|
|
matrixHandler = {
|
|
eventCacheSize = 4096;
|
|
};
|
|
metrics = {
|
|
enabled = true;
|
|
remoteUserAgeBuckets = [
|
|
"1h"
|
|
"1d"
|
|
"1w"
|
|
];
|
|
};
|
|
provisioning = {
|
|
enabled = false;
|
|
requestTimeoutSeconds = 300;
|
|
};
|
|
servers =
|
|
let
|
|
commonConfig = {
|
|
allowExpiredCerts = false;
|
|
botConfig = {
|
|
enabled = false;
|
|
joinChannelsIfNoUsers = false;
|
|
nick = "MatrixBot";
|
|
};
|
|
dynamicChannels = {
|
|
createAlias = true;
|
|
enabled = true;
|
|
federate = true;
|
|
joinRule = "public";
|
|
published = true;
|
|
};
|
|
ircClients = {
|
|
allowNickChanges = true;
|
|
concurrentReconnectLimit = 50;
|
|
idleTimeout = 10800;
|
|
lineLimit = 3;
|
|
maxClients = 30;
|
|
nickTemplate = "$DISPLAY[m]";
|
|
reconnectIntervalMs = 5000;
|
|
};
|
|
matrixClients = {
|
|
joinAttempts = -1;
|
|
};
|
|
membershipLists = {
|
|
enabled = true;
|
|
floodDelayMs = 10000;
|
|
global = {
|
|
ircToMatrix = {
|
|
incremental = true;
|
|
initial = true;
|
|
};
|
|
matrixToIrc = {
|
|
incremental = true;
|
|
initial = true;
|
|
};
|
|
};
|
|
};
|
|
port = 6697;
|
|
privateMessages = {
|
|
enabled = true;
|
|
federate = true;
|
|
};
|
|
sasl = false;
|
|
sendConnectionMessages = true;
|
|
ssl = true;
|
|
};
|
|
in
|
|
{
|
|
"irc.libera.chat" = lib.attrsets.recursiveUpdate commonConfig {
|
|
name = "libera";
|
|
dynamicChannels.groupId = "+libera.chat:localhost";
|
|
dynamicChannels.aliasTemplate = "#_libera_$CHANNEL";
|
|
matrixClients.displayName = "$NICK (LIBERA-IRC)";
|
|
};
|
|
"irc.scratch-network.net" = lib.attrsets.recursiveUpdate commonConfig {
|
|
name = "scratch";
|
|
matrixClients.displayName = "$NICK (SCRATCH-IRC)";
|
|
dynamicChannels.aliasTemplate = "#_scratch_$CHANNEL";
|
|
dynamicChannels.groupId = "+scratch-network.net:localhost";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|