mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
797c77a00a
This replaces some derivation outputs by simple strings rather than full Nix store paths. This removes the need to download the whole derivation when all we need is a static string.
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.tmux = {
|
|
aggressiveResize = true;
|
|
clock24 = true;
|
|
enable = true;
|
|
keyMode = "emacs";
|
|
newSession = true;
|
|
reverseSplit = true;
|
|
|
|
plugins = with pkgs.tmuxPlugins; [
|
|
logging
|
|
prefix-highlight
|
|
fzf-tmux-url
|
|
];
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
tmuxPlugins = super.tmuxPlugins // {
|
|
fzf-tmux-url = super.tmuxPlugins.fzf-tmux-url // {
|
|
rtp = "@tmuxplugin_fzf_tmux_url_rtp@";
|
|
};
|
|
|
|
logging = super.tmuxPlugins.logging // {
|
|
rtp = "@tmuxplugin_logging_rtp@";
|
|
};
|
|
|
|
prefix-highlight = super.tmuxPlugins.prefix-highlight // {
|
|
rtp = "@tmuxplugin_prefix_highlight_rtp@";
|
|
};
|
|
|
|
sensible = super.tmuxPlugins.sensible // {
|
|
rtp = "@tmuxplugin_sensible_rtp@";
|
|
};
|
|
};
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.tmux.conf
|
|
assertFileContent home-files/.tmux.conf ${./emacs-with-plugins.conf}
|
|
'';
|
|
};
|
|
}
|