1
0
Fork 0
nixos-config/home/chat.nix
2020-05-06 13:00:52 +02:00

11 lines
301 B
Nix

{ pkgs, ... }:
let inherit (import ../lib) unstable;
in {
home.packages = builtins.attrValues {
inherit (pkgs) signal-desktop tdesktop dino mumble;
inherit (unstable) riot-desktop;
weechat = pkgs.writeShellScriptBin "weechat" ''
ssh -t hera "tmux -L weechat attach"
'';
};
}