summaryrefslogtreecommitdiff
path: root/nix-home-config/weechat.nix
blob: 80eec933914dbf6d40bdf563837b58f74fb08411 (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
31
32
33
34
35
36
37
{ config, pkgs, ... }:

{
  systemd.user.startServices = true;
  systemd.user.services = {
    weechat = {
      Unit = {
        Description = "Weechat";
        After = [ "networking.target" ];
      };

      Service = {
        Environment = ["TERM=${pkgs.rxvt_unicode.terminfo}" "TMUX_TMPDIR=/run/user/1000"];
        Type = "oneshot";
        RemainAfterExit = "yes";
        ExecStart = "" + pkgs.writeScript "weechat-start" ''
          #!${pkgs.stdenv.shell}
          ${pkgs.tmux}/bin/tmux -2 new-session -d -s irc "${pkgs.weechat}/bin/weechat"
        '';
        ExecStop = "" + pkgs.writeScript "weechat-stop" ''
          #!${pkgs.stdenv.shell}
          pkill -SIGTERM -xf "${pkgs.weechat}/bin/weechat"
          for i in {1..10}; do
            echo "Waiting for weechat to stop... $i"
            pgrep -xlf "${pkgs.weechat}/bin/weechat" || break
            sleep 1
          done
          tmux kill-session -t irc || true
        '';
      };

      Install = {
        WantedBy = [ "default.target" ];
      };
    };
  };
}