20 lines
556 B
Nix
20 lines
556 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
}: let
|
|
unstable = import inputs.nixpkgs-unstable {inherit (pkgs) system;};
|
|
in rec {
|
|
ghostty = pkgs.callPackage ./ghostty {};
|
|
git = pkgs.callPackage ./git {};
|
|
lazygit = pkgs.callPackage ./lazygit {};
|
|
starship = pkgs.callPackage ./starship {};
|
|
tmux = pkgs.callPackage ./tmux {shell = zsh;};
|
|
yazi = pkgs.callPackage ./yazi {};
|
|
# CURRENTLY BORKED https://github.com/zellij-org/zellij/issues/3970
|
|
zellij = pkgs.callPackage ./zellij {
|
|
shell = zsh;
|
|
zellij = unstable.zellij;
|
|
};
|
|
zsh = pkgs.callPackage ./zsh {};
|
|
}
|