21 lines
459 B
Nix
Raw Permalink Normal View History

2024-10-14 18:43:31 +03:00
{ pkgs, ... }:
{
programs.git = {
enable = true;
2024-11-24 11:37:23 +03:00
userName = "dixxe";
userEmail = "max.pan@tuta.io";
2024-10-14 18:43:31 +03:00
extraConfig = {
credential.helper = [
"cache --timeout 21600"
"oauth"
];
signing.signByDefault = true;
};
};
home.packages = with pkgs; [ # Pretty wonky, but idk
git-credential-oauth # how to make it better
];
}