1
0
Fork 0
nixos-config/home-manager/roles/chat.nix

12 lines
358 B
Nix
Raw Normal View History

2022-03-08 01:42:46 +00:00
{pkgs, ...}: {
2022-08-11 09:50:05 +00:00
home.packages =
builtins.attrValues
{
inherit (pkgs) discord signal-desktop tdesktop element-desktop;
weechat = pkgs.writeShellScriptBin "weechat" "ssh -t hera 'TMUX_TMPDIR=/run/user/1000 tmux -L weechat attach'";
};
2022-01-18 22:54:46 +00:00
xdg.configFile."Element/config.json".text = builtins.toJSON {
showLabsSettings = true;
};
2020-05-05 23:40:57 +00:00
}