2022-01-08 23:43:23 +00:00
|
|
|
{ config, pkgs, ... }:
|
2015-07-16 13:51:01 +00:00
|
|
|
|
|
|
|
{
|
2017-09-03 22:16:54 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
2022-01-08 23:43:23 +00:00
|
|
|
6667
|
2015-10-08 23:23:45 +00:00
|
|
|
];
|
2015-10-09 11:21:25 +00:00
|
|
|
|
2022-12-09 10:46:40 +00:00
|
|
|
services.ergochat = {
|
2015-07-16 13:51:01 +00:00
|
|
|
enable = true;
|
2022-12-09 10:46:40 +00:00
|
|
|
settings = {
|
2022-12-16 11:52:00 +00:00
|
|
|
server.name = "irc.r";
|
2022-01-08 23:43:23 +00:00
|
|
|
server.secure-nets = [
|
|
|
|
"42::0/16"
|
|
|
|
"10.240.0.0/12"
|
|
|
|
];
|
|
|
|
oper-classes.server-admin = {
|
|
|
|
title = "admin";
|
|
|
|
capabilities = [
|
|
|
|
"kill" # disconnect user sessions
|
|
|
|
"ban" # ban IPs, CIDRs, and NUH masks ("d-line" and "k-line")
|
|
|
|
"nofakelag" # remove "fakelag" restrictions on rate of message sending
|
|
|
|
"relaymsg" # use RELAYMSG in any channel (see the 'relaymsg' config block)
|
|
|
|
"vhosts" # add and remove vhosts from users
|
|
|
|
"sajoin" # join arbitrary channels, including private channels
|
|
|
|
"samode" # modify arbitrary channel and user modes
|
|
|
|
"snomasks" # subscribe to arbitrary server notice masks
|
|
|
|
"roleplay" # use the (deprecated) roleplay commands in any channel
|
|
|
|
"rehash" # rehash the server, i.e. reload the config at runtime
|
|
|
|
"accreg" # modify arbitrary account registrations
|
|
|
|
"chanreg" # modify arbitrary channel registrations
|
|
|
|
"history" # modify or delete history messages
|
|
|
|
"defcon" # use the DEFCON command (restrict server capabilities)
|
|
|
|
"massmessage" # message all users on the server
|
|
|
|
];
|
|
|
|
};
|
|
|
|
opers.aids = {
|
|
|
|
class = "server-admin";
|
|
|
|
hidden = false;
|
|
|
|
password = "$2a$04$0AtVycWQJ07ymrDdKyAm2un3UVSVIzpzL3wsWbWb3PF95d1CZMcMO";
|
|
|
|
};
|
|
|
|
};
|
2015-07-16 13:51:01 +00:00
|
|
|
};
|
|
|
|
}
|
2022-01-08 23:43:23 +00:00
|
|
|
|
|
|
|
|