CrOS/home/crow/common/core/git.nix
2025-06-09 14:25:56 -04:00

16 lines
275 B
Nix

{
programs.git = {
enable = true;
userName = "TheWanderingCrow";
userEmail = "contact@wanderingcrow.net";
extraConfig = {
init = {
defaultBranch = "main";
};
};
lfs = {
enable = true;
skipSmudge = true;
};
};
}