Files
nixos-config/modules/home/git.nix
2025-09-13 02:38:36 -04:00

15 lines
205 B
Nix

{
...
}:
{
programs.git = {
enable = true;
userName = "Eclypsed";
userEmail = "Ec1ypsed@proton.me";
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
}