17 lines
222 B
Nix
17 lines
222 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
core = {
|
|
preloadindex = true;
|
|
fscache = true;
|
|
};
|
|
gc.auto = 256;
|
|
};
|
|
|
|
};
|
|
}
|