dotfiles/nix/modules/home-manager/features/cli/default.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

48 lines
568 B
Nix

{
config,
inputs,
lib,
pkgs,
self,
...
}:
{
imports = [
(import ./neovim.nix {
inherit
config
inputs
lib
pkgs
self
;
})
(import ./tmux-sessionizer.nix {
inherit
config
lib
pkgs
self
;
})
./bat.nix
./bin.nix
./bluetuith.nix
./direnv.nix
./fzf.nix
./git.nix
./htop.nix
./lsd.nix
./pet.nix
./phpactor.nix
./ripgrep.nix
./starship.nix
./syncthing.nix
./tmux.nix
./zsh.nix
];
}