nix/common/dotfiles/git.nix
2023-07-01 19:02:59 +09:00

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";
};
};
}