mirror of https://git.jolheiser.com/dotnix.git
13 lines
300 B
Nix
13 lines
300 B
Nix
|
{config, ...}: {
|
||
|
programs.senpai = {
|
||
|
enable = true;
|
||
|
config = {
|
||
|
address = "ircs+insecure://irc.jolheiser.com:6697";
|
||
|
nickname = "jolheiser";
|
||
|
password-cmd = ["cat" "${config.age.secrets.irc-pw.path}"];
|
||
|
#channel = "#pico.sh #gitea";
|
||
|
typings = false;
|
||
|
};
|
||
|
};
|
||
|
}
|