l weechat: add service

This commit is contained in:
lassulus 2017-12-31 02:42:01 +01:00
parent f53dac6060
commit 91e13324ec

View File

@ -1,12 +1,24 @@
with (import <stockholm/lib>);
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
inherit (import <stockholm/lib>) genid; 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 { in {
krebs.per-user.chat.packages = with pkgs; [
mosh
weechat
];
users.extraUsers.chat = { users.extraUsers.chat = {
home = "/home/chat"; home = "/home/chat";
@ -24,24 +36,22 @@ in {
# mosh # mosh
krebs.iptables.tables.filter.INPUT.rules = [ krebs.iptables.tables.filter.INPUT.rules = [
{ predicate = "-p udp --dport 60000:61000"; target = "ACCEPT";} { predicate = "-p udp --dport 60000:61000"; target = "ACCEPT";}
{ predicate = "-p tcp --dport 9999"; target = "ACCEPT";}
]; ];
#systemd.services.chat = { systemd.services.chat = {
# description = "chat environment setup"; description = "chat environment setup";
# after = [ "network.target" ]; after = [ "network.target" ];
# wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
# path = with pkgs; [ restartIfChanged = false;
# weechat
# tmux
# ];
# restartIfChanged = true; serviceConfig = {
User = "chat";
# serviceConfig = { RemainAfterExit = true;
# User = "chat"; Type = "oneshot";
# Restart = "always"; ExecStart = "${tmux} -2 new-session -d -s IM ${pkgs.weechat}/bin/weechat";
# ExecStart = "${pkgs.tmux}/bin/tmux new -s IM weechat"; ExecStop = "${tmux} kill-session -t IM";
# }; };
#}; };
} }