feat(mac): add git-credential-oauth

This commit is contained in:
Michael Thomas 2024-02-27 12:19:22 -05:00
parent e6d08e26c5
commit 3f3c4393f8

View File

@ -15,6 +15,7 @@
home.packages = with pkgs; [
bitwarden-cli
firebird-emu
git-credential-oauth
];
programs.zsh = {
@ -37,7 +38,10 @@
};
};
programs.git.extraConfig.credential.helper = "osxkeychain";
programs.git.extraConfig.credential.helper = [
"osxkeychain"
"oauth"
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;