mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
19 lines
331 B
Nix
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;
|
|
};
|
|
};
|
|
}
|