Added git credential helper; removed gh

This commit is contained in:
Jurn Wubben 2025-06-23 20:39:47 +02:00
parent a46e31e783
commit 3136df9d3c
3 changed files with 13 additions and 2 deletions

11
home/shell/git.nix Normal file
View file

@ -0,0 +1,11 @@
{
programs = {
git = {
enable = true;
userEmail = "jurnwubben@gmail.com";
userName = "Jurn Wubben";
extraConfig.push.autoSetupRemote = true;
};
git-credential-oauth = true;
};
}