Files
nix/packages/devkit/default.nix

12 lines
428 B
Nix
Raw Normal View History

2025-02-12 11:21:55 -03:00
{pkgs}: rec {
ghostty = pkgs.callPackage ./ghostty {};
2025-02-12 11:22:09 -03:00
git = pkgs.callPackage ./git {};
2025-02-12 11:22:16 -03:00
lazygit = pkgs.callPackage ./lazygit {};
2025-02-12 11:22:27 -03:00
starship = pkgs.callPackage ./starship {};
tmux = pkgs.callPackage ./tmux {shell = zsh;};
2025-02-12 11:22:48 -03:00
yazi = pkgs.callPackage ./yazi {};
# CURRENTLY BORKED https://github.com/zellij-org/zellij/issues/3970
# zellij = pkgs.callPackage ./zellij {shell = zsh;};
zsh = pkgs.callPackage ./zsh {};
2025-02-12 11:21:55 -03:00
}