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