Files
nixos-config/modules/home/git.nix
2025-10-07 09:13:19 -04:00

19 lines
260 B
Nix

{
pkgs,
...
}:
{
programs.git = {
enable = true;
userName = "Eclypsed";
userEmail = "Ec1ypsed@proton.me";
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
home.packages = with pkgs; [ git-ignore ];
}