summaryrefslogtreecommitdiffstats
path: root/nin/2configs/im.nix
diff options
context:
space:
mode:
authornin <nin@c-base.org>2019-09-25 19:42:41 +0200
committertv <tv@krebsco.de>2019-09-25 21:36:01 +0200
commitb6443c712dc0d0782243cc60868b362f6e28031f (patch)
treeca2ab8279f39f570527e595794b1f7a63d403d4d /nin/2configs/im.nix
parent6a62fd95c616849e7a70fd12eebfacaf12738345 (diff)
Revert "remove nin"
This reverts commit 789a6ecc082911f12b22cb559b57cf2f76e6f2ed.
Diffstat (limited to 'nin/2configs/im.nix')
-rw-r--r--nin/2configs/im.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nin/2configs/im.nix b/nin/2configs/im.nix
new file mode 100644
index 0000000..b078dbd
--- /dev/null
+++ b/nin/2configs/im.nix
@@ -0,0 +1,19 @@
+{ config, lib, pkgs, ... }:
+with import <stockholm/lib>;
+{
+ environment.systemPackages = with pkgs; [
+ (pkgs.writeDashBin "im" ''
+ export PATH=${makeSearchPath "bin" (with pkgs; [
+ tmux
+ gnugrep
+ weechat
+ ])}
+ ssh chat@onondaga
+ if tmux list-sessions -F\#S | grep -q '^im''$'; then
+ exec tmux attach -t im
+ else
+ exec tmux new -s im weechat
+ fi
+ '')
+ ];
+}