l IM: add tmux to packages, add weechat-matrix
This commit is contained in:
parent
cd816fb427
commit
889b5b91fb
@ -1,13 +1,15 @@
|
|||||||
with (import <stockholm/lib>);
|
with (import <stockholm/lib>);
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }: let
|
||||||
|
weechat = pkgs.weechat.override {
|
||||||
|
configure = { availablePlugins, ... }: with pkgs.weechatScripts; {
|
||||||
|
plugins = lib.attrValues (availablePlugins // {
|
||||||
|
python = availablePlugins.python.withPackages (_: [ weechat-matrix ]);
|
||||||
|
});
|
||||||
|
scripts = [ weechat-matrix ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
{
|
tmux = pkgs.writeDashBin "tmux" ''
|
||||||
imports = [
|
|
||||||
./bitlbee.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
systemd.services.chat = let
|
|
||||||
tmux = pkgs.writeDash "tmux" ''
|
|
||||||
exec ${pkgs.tmux}/bin/tmux -f ${pkgs.writeText "tmux.conf" ''
|
exec ${pkgs.tmux}/bin/tmux -f ${pkgs.writeText "tmux.conf" ''
|
||||||
set-option -g prefix `
|
set-option -g prefix `
|
||||||
unbind-key C-b
|
unbind-key C-b
|
||||||
@ -23,7 +25,13 @@ with (import <stockholm/lib>);
|
|||||||
bind-key C-s switch-client -l
|
bind-key C-s switch-client -l
|
||||||
''} "$@"
|
''} "$@"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in {
|
in {
|
||||||
|
imports = [
|
||||||
|
./bitlbee.nix
|
||||||
|
];
|
||||||
|
environment.systemPackages = [ tmux ];
|
||||||
|
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" ];
|
||||||
@ -38,8 +46,8 @@ with (import <stockholm/lib>);
|
|||||||
User = "lass";
|
User = "lass";
|
||||||
RemainAfterExit = true;
|
RemainAfterExit = true;
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
ExecStart = "${tmux} -2 new-session -d -s IM ${pkgs.weechat}/bin/weechat";
|
ExecStart = "${tmux}/bin/tmux -2 new-session -d -s IM ${weechat}/bin/weechat";
|
||||||
ExecStop = "${tmux} kill-session -t IM";
|
ExecStop = "${tmux}/bin/tmux kill-session -t IM"; # TODO run save in weechat
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user