first commit

This commit is contained in:
2026-06-24 20:20:23 +02:00
commit 8fc0d08dbc
77 changed files with 5688 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{ config, pkgs, ... }:
{
programs = {
irssi = {
enable = true;
extraConfig = "";
# irc networks
networks = {
liberachat = {
channels = {
nixos = {
autoJoin = true;
};
linux = {
autoJoin = true;
};
};
nick = "halbg0tt";
server = {
address = "irc.libera.chat";
autoConnect = false;
port = 6697;
};
};
};
};
};
}