mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-30 10:20:43 +00:00
Add git configuration
This commit is contained in:
parent
a9cdf25a57
commit
329f48882e
9 changed files with 223 additions and 0 deletions
16
home/programs/terminal/tools/git/gh.nix
Normal file
16
home/programs/terminal/tools/git/gh.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue