Change git credential helper to oauth

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