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

9 lines
250 B
Nix
Raw Normal View History

2020-05-14 00:11:01 +00:00
{ pkgs, ... }:
2020-05-21 23:13:42 +00:00
{
2020-05-05 23:40:57 +00:00
home.packages = builtins.attrValues {
2020-05-21 23:13:42 +00:00
inherit (pkgs.unfree) discord;
2020-05-13 12:34:10 +00:00
inherit (pkgs) signal-desktop tdesktop dino riot-desktop;
2020-05-21 23:13:42 +00:00
weechat = pkgs.writeShellScriptBin "weechat" "ssh -t hera 'tmux -L weechat attach'";
2020-05-05 23:40:57 +00:00
};
}