nix/modules/home-manager/senpai.nix

19 lines
334 B
Nix
Raw Normal View History

2023-11-07 21:30:26 -06:00
{config, ...}: {
programs.senpai = {
enable = true;
config = {
2024-03-19 10:25:29 -05:00
address = "a";
nickname = "a";
2023-11-07 21:30:26 -06:00
};
};
home.file."${config.xdg.configHome}/senpai/senpai.scfg" = {
enable = true;
text = ''
address irc+insecure://beefcake:6667
nickname lytedev
password-cmd pass soju
'';
};
}