Change git credential helper to git-credential-manager because the former was trash

This commit is contained in:
2025-08-05 21:07:25 +02:00
parent 24fbe2a387
commit f1d93fb854
+3 -2
View File
@@ -1,7 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
git-credential-oauth
git-credential-manager
];
programs.git = {
@@ -9,7 +9,8 @@
userName = "Leonhard Kost";
userEmail = "leonhard.kost@gmail.com";
extraConfig = {
credential.helper = "oauth";
credential.credentialStore = "cache";
credential.helper = "manager";
};
};
}