Add irssi with config

This commit is contained in:
Evie Litherland-Smith 2023-12-27 08:41:26 +00:00
parent 8ae1489e46
commit 9591d49211

20
home/irc.nix Normal file
View file

@ -0,0 +1,20 @@
{ ... }: {
programs.irssi = {
enable = true;
networks = {
liberachat = {
nick = "xenia3";
server = {
address = "irc.libera.chat";
port = 6697;
autoConnect = true;
};
channels = {
nixos.autoJoin = true;
emacs.autoJoin = true;
systemcrafters.autoJoin = true;
};
};
};
};
}