nixos-config/modules/home/git.nix
2024-11-02 16:48:29 +01:00

20 lines
335 B
Nix

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