10 lines
No EOL
212 B
Nix
10 lines
No EOL
212 B
Nix
{ config, pkgs, ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "albert";
|
|
userEmail = "albert@sysctl.io";
|
|
extraConfig = {
|
|
credential.helper = "cache --timeout=25920000";
|
|
};
|
|
};
|
|
} |