summaryrefslogtreecommitdiffstats
path: root/lass
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2021-10-25 16:03:15 +0200
committerlassulus <lassulus@lassul.us>2021-10-25 16:03:15 +0200
commit703cdd24b2680f7ea3204cc3bed6bfe68ed006ce (patch)
treee306d272c0f7d505d2fb23e5f1d54afab88c16be /lass
parent589acac74d4a6b64d83090a50b98e8359df1f274 (diff)
l blue: remove chat stuff
Diffstat (limited to 'lass')
-rw-r--r--lass/2configs/blue.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/lass/2configs/blue.nix b/lass/2configs/blue.nix
index 15408a20..7890743b 100644
--- a/lass/2configs/blue.nix
+++ b/lass/2configs/blue.nix
@@ -30,43 +30,6 @@ with (import <stockholm/lib>);
{ predicate = "-i wiregrill -p tcp --dport imap"; target = "ACCEPT";}
];
- systemd.services.chat = let
- tmux = pkgs.writeDash "tmux" ''
- exec ${pkgs.tmux}/bin/tmux -f ${pkgs.writeText "tmux.conf" ''
- set-option -g prefix `
- unbind-key C-b
- bind ` send-prefix
-
- set-option -g status off
- set-option -g default-terminal screen-256color
-
- #use session instead of windows
- bind-key c new-session
- bind-key p switch-client -p
- bind-key n switch-client -n
- bind-key C-s switch-client -l
- ''} "$@"
- '';
- in {
- description = "chat environment setup";
- after = [ "network.target" ];
- wantedBy = [ "multi-user.target" ];
-
- restartIfChanged = false;
-
- path = [
- pkgs.rxvt_unicode.terminfo
- ];
-
- serviceConfig = {
- User = "lass";
- RemainAfterExit = true;
- Type = "oneshot";
- ExecStart = "${tmux} -2 new-session -d -s IM ${pkgs.weechat}/bin/weechat";
- ExecStop = "${tmux} kill-session -t IM";
- };
- };
-
services.dovecot2 = {
enable = true;
mailLocation = "maildir:~/Maildir";