nixos-config/modules/home/git.nix

16 lines
280 B
Nix

{pkgs, ...}: {
programs.git = {
enable = true;
userName = "peprolinbot";
userEmail = "personal@peprolinbot.com";
extraConfig = {
init.defaultBranch = "main";
credential.helper = "store";
};
};
# home.packages = [ pkgs.gh pkgs.git-lfs ];
}