feat: add irssi
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
parent
d25ae77658
commit
a97fd5c06d
2 changed files with 26 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
|||
{...}: {
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./irssi.nix
|
||||
#./mail.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
23
home/lander/features/workstation/irssi.nix
Normal file
23
home/lander/features/workstation/irssi.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue