dotfiles/home-manager/git.nix
Benjamin Palko 4f6a0c34d5 git config
2024-07-15 21:38:21 -04:00

12 lines
215 B
Nix

{ ... }:
{
programs.git = {
enable = true;
userName = "Benjamin Palko";
userEmail = "Benjaminpalko@hotmail.com";
};
programs.gh = {
enable = true;
gitCredentialHelper.enable = true;
};
}