diff options
author | tv <tv@krebsco.de> | 2019-12-02 01:15:57 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2020-01-05 22:16:09 +0100 |
commit | 02a134b019d00b94c29beaf6ce1fdf30dcec93dd (patch) | |
tree | c21db766508c1a5825b8f1fa9f33667adeec7fee /tv/2configs | |
parent | b77df86da81d20040d9a2c5bd1dee4ad750fa851 (diff) |
tv im: configs -> modules
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/im.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tv/2configs/im.nix b/tv/2configs/im.nix deleted file mode 100644 index 82f1be042..000000000 --- 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 - ]; - }; -} |