summaryrefslogtreecommitdiffstats
path: root/tv/2configs/im.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-12-02 01:15:57 +0100
committertv <tv@krebsco.de>2019-12-02 01:25:30 +0100
commit37b0c5ae490bf94bf2e5df1502d0a284e3d60c37 (patch)
tree425137a83bc54a0cde27f594473bd68a8800d231 /tv/2configs/im.nix
parent53fd88bcef4d0cd45de4c4d48e8e282f4b225cba (diff)
tv im: configs -> modules
Diffstat (limited to 'tv/2configs/im.nix')
-rw-r--r--tv/2configs/im.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/tv/2configs/im.nix b/tv/2configs/im.nix
deleted file mode 100644
index 82f1be04..00000000
--- a/tv/2configs/im.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ config, lib, pkgs, ... }:
-with import <stockholm/lib>;
-{
- environment.systemPackages = with pkgs; [
- (pkgs.writeDashBin "im" ''
- export PATH=${makeSearchPath "bin" (with pkgs; [
- tmux
- gnugrep
- weechat
- ])}
- if tmux list-sessions -F\#S | grep -q '^im''$'; then
- exec tmux attach -t im
- else
- exec tmux new -s im weechat
- fi
- '')
- ];
- services.bitlbee = {
- enable = true;
- plugins = [
- pkgs.bitlbee-facebook
- ];
- };
-}