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

9 lines
229 B
Nix
Raw Normal View History

2020-05-07 13:55:24 +00:00
{ pkgs, ... }: {
2020-05-05 23:40:57 +00:00
home.packages = builtins.attrValues {
2020-05-13 12:34:10 +00:00
inherit (pkgs) signal-desktop tdesktop dino riot-desktop;
2020-05-06 11:00:52 +00:00
weechat = pkgs.writeShellScriptBin "weechat" ''
ssh -t hera "tmux -L weechat attach"
'';
2020-05-05 23:40:57 +00:00
};
}