nix/common/dotfiles/git.nix

10 lines
212 B
Nix
Raw Normal View History

2023-07-01 12:02:59 +02:00
{ config, pkgs, ... }: {
programs.git = {
enable = true;
userName = "albert";
userEmail = "albert@sysctl.io";
extraConfig = {
credential.helper = "cache --timeout=25920000";
};
2023-07-01 11:54:47 +02:00
};
2023-07-01 12:02:59 +02:00
}