CrOS/home/crow/common/core/git.nix
TheWanderingCrow 77bbf9ae76 git stuff
2025-08-19 10:36:27 -04:00

19 lines
331 B
Nix

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