nix/modules/home-manager/senpai.nix

19 lines
327 B
Nix
Raw Normal View History

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