nixdots/home/programs/terminal/tools/git/gh.nix

17 lines
417 B
Nix
Raw Normal View History

2024-07-26 23:07:07 +00:00
{pkgs, ...}: {
2024-04-04 18:16:56 +00:00
programs.gh = {
enable = true;
gitCredentialHelper.enable = false;
extensions = with pkgs; [
gh-dash # dashboard with pull requess and issues
gh-eco # explore the ecosystem
gh-cal # contributions calendar terminal viewer
2024-06-21 13:54:02 +00:00
gh-notify # access and manage github notifications
2024-04-04 18:16:56 +00:00
];
settings = {
git_protocol = "ssh";
prompt = "enabled";
};
};
}