add irssi

This commit is contained in:
cy 2025-01-21 12:07:49 -05:00
parent bbcc1433de
commit 6a2269f591
2 changed files with 19 additions and 0 deletions

18
home/irssi.nix Normal file
View file

@ -0,0 +1,18 @@
{...}: {
programs.irssi = {
enable = true;
networks.liberachat = {
nick = "cy7";
server = {
address = "irc.libera.chat";
port = 6697;
autoConnect = true;
};
channels = {
nixos.autoJoin = true;
linux.autoJoin = true;
rust.autoJoin = true;
};
};
};
}

View file

@ -7,6 +7,7 @@
./common.nix ./common.nix
../foot.nix ../foot.nix
../niri ../niri
../irssi.nix
]; ];
home = { home = {
username = "yt"; username = "yt";