19 lines
327 B
Nix
19 lines
327 B
Nix
|
{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
|
||
|
'';
|
||
|
};
|
||
|
}
|