feat: senpai

Signed-off-by: jolheiser <git@jolheiser.com>
main
jolheiser 2024-07-18 16:33:56 -05:00
parent 6800193a85
commit 595e74caa8
No known key found for this signature in database
3 changed files with 14 additions and 1 deletions

View File

@ -6,7 +6,7 @@
./ghostty.nix
./gtk.nix
./spotify.nix
./tiny.nix
#./tiny.nix
./wezterm.nix
./zed.nix
];

View File

@ -19,6 +19,7 @@
./lazygit.nix
./nushell.nix
./oh-my-posh.nix
./senpai.nix
./ssh.nix
./xdg.nix
./zoxide.nix

View File

@ -0,0 +1,12 @@
{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;
};
};
}