dotfiles/nix/modules/home-manager/features/cli/tmux-sessionizer.nix

41 lines
748 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
{
options.features.cli.tmux-sessionizer.enable = mkEnableOption "Enable tmux-sessionizer";
config = mkIf config.features.cli.tmux-sessionizer.enable {
home.packages = with pkgs; [ custom-tmux-sessionizer ];
home.file.".tmux-sessionizer".source = "${
pkgs.writeShellApplication {
name = ".tmux-sessionizer";
runtimeInputs = with pkgs; [
tmux
];
text = ''
set +o nounset
if [[ "$PWD" == "$REPOS/os" || "$PWD" == "$REPOS/personal" ]]; then
clear
return
fi
tmux new-window -d -n shell
nvim
clear
'';
}
}/bin/.tmux-sessionizer";
};
}