This commit is contained in:
♥ Minnie ♥ 2024-04-14 21:55:11 +08:00
parent 83311791e3
commit 5a408df4fd
2 changed files with 20 additions and 0 deletions

View file

@ -3,6 +3,7 @@
{
imports = [
./discord
./irc.nix
./mpd.nix
];
}

View file

@ -0,0 +1,19 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
weechat
];
home.persistence."/persist/home/sajenim" = {
directories = [
# WeeChat configuration files: *.conf, certificates, etc.
".config/weechat"
# WeeChat data files: logs, scripts, scripts data, xfer files, etc.
".local/share/weechat"
# WeeChat cache files: scripts cache.
".cache/weechat"
];
};
}