Files
dotfiles/nix/home/gh/default.nix
Stefan Imhoff 9c6d620ce6 chore(nix): remove extra home packages for programs
As it can lead to conflicts between versions, I removed the additional
imports. They are not needed as the program is installed by enabling the
program.
2024-07-29 15:42:23 +02:00

28 lines
770 B
Nix

{ pkgs, ... }:
{
programs.gh = {
enable = true;
extensions = with pkgs; [
gh-copilot # Ask for assistance right in your terminal
gh-dash # Display a dashboard with pull requests and issues
gh-eco # Explore the ecosystem
gh-f # Ultimate FZF extension
gh-markdown-preview # Preview Markdown looking like on GitHub
gh-notify # Display GitHub notifications
gh-poi # Safely clean up your local branches
gh-s # Search github repositories interactively
];
settings = {
git_protocol = "ssh";
prompt = "enabled";
aliases = {
co = "pr checkout";
me = "pr list --assignee @me";
pv = "pr view";
xds = "pr list --label='team: design-system'";
};
};
};
}