mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 09:39:42 +00:00
17 lines
403 B
Nix
17 lines
403 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
|
||
|
# TODO: Include meiji163/gh-notify
|
||
|
];
|
||
|
settings = {
|
||
|
git_protocol = "ssh";
|
||
|
prompt = "enabled";
|
||
|
};
|
||
|
};
|
||
|
}
|