mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 07:04:47 +00:00
17 lines
272 B
Nix
17 lines
272 B
Nix
{ ... }:
|
|
{
|
|
programs.gh = {
|
|
enable = true;
|
|
gitCredentialHelper.enable = true;
|
|
|
|
settings = {
|
|
git_protocol = "https";
|
|
prompt = "enabled";
|
|
prefer_editor_prompt = "disabled";
|
|
|
|
aliases = {
|
|
co = "pr checkout";
|
|
};
|
|
};
|
|
};
|
|
}
|