2024-03-31 01:43:52 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
programs.tiny = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
servers = [
|
|
|
|
{
|
|
|
|
addr = "irc.libera.chat";
|
|
|
|
port = 6697;
|
|
|
|
tls = true;
|
|
|
|
realname = "Gabe Venberg";
|
|
|
|
nicks = ["toric"];
|
|
|
|
join = [
|
|
|
|
"#libera"
|
|
|
|
"#linux"
|
2024-04-17 20:11:02 +02:00
|
|
|
"#archlinux"
|
|
|
|
"#nixos"
|
|
|
|
"#neovim"
|
2024-04-01 00:58:48 +02:00
|
|
|
"##programming"
|
|
|
|
"##rust"
|
2024-03-31 23:23:56 +02:00
|
|
|
"#git"
|
|
|
|
"#kernel"
|
2024-04-01 00:58:48 +02:00
|
|
|
"#hardware"
|
|
|
|
"#lobsters"
|
2024-03-31 23:23:56 +02:00
|
|
|
"#gamingonlinux"
|
2024-04-17 20:11:02 +02:00
|
|
|
"##chat"
|
2024-03-31 01:43:52 +01:00
|
|
|
];
|
|
|
|
sasl = {
|
2024-03-31 23:23:56 +02:00
|
|
|
username = "toric";
|
2024-06-04 18:00:43 +02:00
|
|
|
pem = config.sops.secrets.irc-cert.path;
|
2024-03-31 01:43:52 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
defaults = {
|
2024-04-18 21:53:20 +02:00
|
|
|
# ignore join/leave messages
|
|
|
|
ignore = true;
|
2024-03-31 01:43:52 +01:00
|
|
|
nicks = ["toric"];
|
|
|
|
realname = "Gabe Venberg";
|
|
|
|
tls = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-05-31 19:01:32 +02:00
|
|
|
}
|