feat: add senpai

This commit is contained in:
Teesh 2026-02-01 20:59:56 +02:00
parent 7479c6b99f
commit be271f279c

View file

@ -0,0 +1,17 @@
{ ... }:
{
flake.modules.nixos.desktop = { pkgs, ... }: {
environment.systemPackages = [ pkgs.senpai ];
};
flake.modules.homeManager.desktop = {
programs.senpai = {
enable = true;
config = {
address = "irc.libera.chat:6697";
nickname = "teesh3rt";
};
};
};
}