tv weechat-server: init

This commit is contained in:
tv 2023-09-05 21:11:11 +02:00
parent f9adf3af97
commit 90b1515dcd
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ config, pkgs, ... }: {
users.users.tv.packages = [
(pkgs.writers.writeDashBin "weechat-client" ''
set -efu
exec ${pkgs.tmux}/bin/tmux attach -t weechat
'')
];
systemd.services.weechat = {
wantedBy = [ "multi-user.target" ];
environment = {
TERM = "rxvt-unicode-256color";
};
serviceConfig = {
ExecStart = "${pkgs.tmux}/bin/tmux new -d -s weechat ${pkgs.weechat}/bin/weechat";
OOMScoreAdjust = -1000;
Restart = "always";
RestartSec = "100ms";
Type = "forking";
StartLimitBurst = 0;
User = "tv";
WorkingDirectory = "/home/tv";
};
};
}