CrOS/modules/users/crow/configs/git.nix
TheWanderingCrow 445adc0c55 configure lfs
2025-03-05 16:09:02 -05: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;
};
};
}