mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
36 lines
893 B
Nix
36 lines
893 B
Nix
{ config, pkgs, lib, superConfig, ... }:
|
|
|
|
{
|
|
programs.weechat = {
|
|
enable = true;
|
|
config = {
|
|
irc = {
|
|
server = {
|
|
freenode = {
|
|
address = "athame.kittywit.ch/5001";
|
|
password = "kat/freenode:\${sec.data.znc}";
|
|
ssl = true;
|
|
ssl_verify = false;
|
|
autoconnect = true;
|
|
};
|
|
espernet = {
|
|
address = "athame.kittywit.ch/5001";
|
|
password = "kat/espernet:\${sec.data.znc}";
|
|
ssl = true;
|
|
ssl_verify = false;
|
|
autoconnect = true;
|
|
};
|
|
};
|
|
};
|
|
matrix = {
|
|
server.kat = {
|
|
address = "kittywit.ch";
|
|
device_name = "${superConfig.networking.hostName}/weechat";
|
|
username = "kat";
|
|
password = "\${sec.data.matrix}";
|
|
autoconnect = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|