dotfiles/nix/modules/home-manager/features/cli/tmux-sessionizer.nix
Oliver Davies 930473a896 Rename t to tmux-sessionizer
This matches ThePrimeagen's script that mine is based on and that I'll
probably switch to in the future.

I've added to the Nix store as custom-tmux-sessionizer so it doesn't
conflict with the tmux-sessionzer packages that's already in the store.
2024-12-07 00:43:21 +00:00

33 lines
617 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options.features.cli.tmux-sessionizer.enable = lib.mkEnableOption "Enable tmux-sessionizer";
config = lib.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
tmux new-window -d -n scratch
nvim
clear
'';
}
}/bin/.tmux-sessionizer";
};
}