1
0
Fork 0

Enable Element Labs

This commit is contained in:
Malte Brandy 2022-01-17 14:42:16 +01:00
parent 60399a2283
commit 3550d1113f

View file

@ -1,7 +1,9 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = builtins.attrValues rec { home.packages = builtins.attrValues
inherit (pkgs) discord signal-desktop tdesktop dino element-desktop; {
weechat = pkgs.writeShellScriptBin "weechat" "ssh -t hera 'TMUX_TMPDIR=/run/user/1000 tmux -L weechat attach'"; 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; };
} }