feat: add 'tmux' to 'shell' module
This commit is contained in:
@@ -28,8 +28,6 @@ with pkgs;
|
|||||||
sops
|
sops
|
||||||
sshfs
|
sshfs
|
||||||
tldr
|
tldr
|
||||||
tmux
|
|
||||||
tmuxp
|
|
||||||
tree
|
tree
|
||||||
unzip
|
unzip
|
||||||
vimPlugins.vim-plug
|
vimPlugins.vim-plug
|
||||||
|
|||||||
@@ -3,5 +3,6 @@
|
|||||||
./bash.nix
|
./bash.nix
|
||||||
./utils.nix
|
./utils.nix
|
||||||
./prompt.nix
|
./prompt.nix
|
||||||
|
../tmux.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
25
home/modules/tmux.nix
Normal file
25
home/modules/tmux.nix
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
dotsPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
tmux
|
||||||
|
tmuxp
|
||||||
|
reptyr
|
||||||
|
];
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".config/tmux/tmux.conf".source = dotsPath + "/.config/tmux/tmux.conf";
|
||||||
|
".config/tmux/tmux.regular.conf".source = dotsPath + "/.config/tmux/tmux.regular.conf";
|
||||||
|
".config/tmux/themes/zenwritten_light.tmux".source =
|
||||||
|
dotsPath + "/.config/tmux/themes/zenwritten_light.tmux";
|
||||||
|
".config/tmux/themes/zenwritten_dark.tmux".source =
|
||||||
|
dotsPath + "/.config/tmux/themes/zenwritten_dark.tmux";
|
||||||
|
".config/tmux/hooks/tmux.ssh.conf".source = dotsPath + "/.config/tmux/hooks/tmux.ssh.conf";
|
||||||
|
".config/tmux/hooks/tmux.regular.conf".source = dotsPath + "/.config/tmux/hooks/tmux.regular.conf";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user