Oliver Davies
930473a896
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.
48 lines
568 B
Nix
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
|
|
];
|
|
}
|