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

17 lines
419 B
Nix
Raw Normal View History

2024-04-04 18:16:56 +00:00
{ pkgs, ... }: {
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";
};
};
}