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

12 lines
306 B
Nix
Raw Normal View History

2020-05-14 00:11:01 +00:00
{ pkgs, ... }:
let inherit (import ../lib) unfreePkgs;
in {
2020-05-05 23:40:57 +00:00
home.packages = builtins.attrValues {
2020-05-14 00:11:01 +00:00
inherit (unfreePkgs) discord;
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
};
}