wip: make tmate to use tmux config

This commit is contained in:
Sridhar Ratnakumar 2022-11-16 18:18:24 -05:00
parent 533e4b3ad6
commit 496f44e922

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
programs.tmux = {
enable = true;
@ -30,4 +30,10 @@
bind c new-window -c "#{pane_current_path}"
'';
};
programs.tmate = {
enable = true;
# FIXME: This causes tmate to hang.
# extraConfig = config.xdg.configFile."tmux/tmux.conf".text;
};
}