2019-06-04 13:21:20 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.tmux = {
|
|
|
|
enable = true;
|
|
|
|
disableConfirmationPrompt = true;
|
|
|
|
};
|
2019-10-08 22:46:27 +02:00
|
|
|
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: super: {
|
|
|
|
tmuxPlugins = super.tmuxPlugins // {
|
2020-04-06 12:51:11 +02:00
|
|
|
sensible = super.tmuxPlugins.sensible // { rtp = "@sensible_rtp@"; };
|
2019-10-08 22:46:27 +02:00
|
|
|
};
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-06-04 13:21:20 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.tmux.conf
|
|
|
|
assertFileContent home-files/.tmux.conf \
|
2019-10-08 22:46:27 +02:00
|
|
|
${./disable-confirmation-prompt.conf}
|
2019-06-04 13:21:20 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|