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

10 lines
350 B
Nix
Raw Normal View History

2020-05-14 00:11:01 +00:00
{ pkgs, ... }:
2020-05-21 23:13:42 +00:00
{
2022-01-17 13:42:16 +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'";
};
xdg.configFile."Element/config.json".text = builtins.toJSON { showLabsSettings = true; };
2020-05-05 23:40:57 +00:00
}