feat: add 'tmux' to 'shell' module

This commit is contained in:
2026-01-23 10:21:31 +01:00
parent 24ed3f03cd
commit e75fc95b27
3 changed files with 26 additions and 2 deletions

View File

@@ -28,8 +28,6 @@ with pkgs;
sops
sshfs
tldr
tmux
tmuxp
tree
unzip
vimPlugins.vim-plug

View File

@@ -3,5 +3,6 @@
./bash.nix
./utils.nix
./prompt.nix
../tmux.nix
];
}

25
home/modules/tmux.nix Normal file
View 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";
};
};
}