From f1d93fb854b73954720a99a9a47aaf44b0ab761b Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Tue, 5 Aug 2025 21:07:25 +0200 Subject: [PATCH] Change git credential helper to git-credential-manager because the former was trash --- modules/home-manager/git.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/home-manager/git.nix b/modules/home-manager/git.nix index 99b7245..a1e497d 100644 --- a/modules/home-manager/git.nix +++ b/modules/home-manager/git.nix @@ -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"; }; }; }