summaryrefslogtreecommitdiff
path: root/config/weechat.nix
blob: e15cd33f59a46736bcbf63ff5003a1042c2277d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ config, pkgs, ... }:
{
  systemd.services = {
    weechat = {
      description = "weechat session";
      path = [ pkgs.weechat pkgs.tmux pkgs.coreutils ];
      after = [ "networking.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        Type = "oneshot";
        User = "orbekk";
        RemainAfterExit = true;
      };
      script = ''
        tmux -2 new-session -d -s irc "${pkgs.weechat}/bin/weechat"
      '';
      preStop = ''
        # Gently shut down weechat.
        # -xf is needed to kill precisely weechat (and not this script).
        pkill -SIGTERM -xf "${pkgs.weechat}/bin/weechat"
        for i in {1..10}; do
          echo "Waiting for weechat to stop"
          pgrep -xlf "${pkgs.weechat}/bin/weechat" || break
          sleep 1
        done
        tmux kill-session -t irc || true
      '';
    };
  };
}