Added git credential helper; removed gh

This commit is contained in:
Jurn Wubben 2025-06-23 20:39:47 +02:00
parent 664594c064
commit 45cc3df817
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;
};
}