add irc
This commit is contained in:
parent
83311791e3
commit
5a408df4fd
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./discord
|
./discord
|
||||||
|
./irc.nix
|
||||||
./mpd.nix
|
./mpd.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
19
home-manager/sajenim/features/desktop/common/irc.nix
Normal file
19
home-manager/sajenim/features/desktop/common/irc.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue