15 lines
416 B
Nix
15 lines
416 B
Nix
{pkgs}: rec {
|
|
ghostty = pkgs.callPackage ./ghostty {};
|
|
git = pkgs.callPackage ./git {};
|
|
lazygit = pkgs.callPackage ./lazygit {};
|
|
starship = pkgs.callPackage ./starship {};
|
|
yazi = pkgs.callPackage ./yazi {};
|
|
zellij = pkgs.callPackage ./zellij {
|
|
shell = zsh;
|
|
addPath = [ghostty git lazygit starship yazi zsh];
|
|
};
|
|
zsh = pkgs.callPackage ./zsh {
|
|
addPath = [git lazygit starship yazi];
|
|
};
|
|
}
|