feat: add irssi

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-09-23 12:12:48 +02:00
parent d25ae77658
commit a97fd5c06d
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 26 additions and 1 deletions

View file

@ -1,6 +1,8 @@
{...}: {
{ ... }:
{
imports = [
./alacritty.nix
./irssi.nix
#./mail.nix
];
}

View file

@ -0,0 +1,23 @@
{ ... }:
{
programs.irssi = {
enable = true;
networks = {
liberachat = {
server = {
address = "irc.libera.chat";
port = 6697;
autoConnect = true;
ssl.enable = true;
};
nick = "escapeangle";
channels = {
inuits.autoJoin = true;
mgmtconfig.autoJoin = true;
nixos.autoJoin = true;
promethues.autoJoin = true;
};
};
};
};
}