Files
panoptes-nix/home-manager/git.nix
John Lancaster 679f8bfca0 reorg
2024-12-07 14:41:23 -06:00

10 lines
276 B
Nix

{ repoPath, ... }:
{
programs.git = {
enable = true;
extraConfig.safe.directory = "${repoPath}";
extraConfig.credential.helper = "store --file ~/.git-credentials";
userName = "John Lancaster";
userEmail = "32917998+jsl12@users.noreply.github.com";
};
}