1
0
Fork 0
mirror of https://github.com/ItsDrike/nixdots synced 2025-02-22 02:09:02 +00:00
nixdots/home/programs/terminal/tools/git/gh.nix
2024-06-21 15:54:02 +02:00

16 lines
419 B
Nix

{ 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
gh-notify # access and manage github notifications
];
settings = {
git_protocol = "ssh";
prompt = "enabled";
};
};
}