Files
loki-nix/homeManagerModules/git.nix
John Lancaster 6bf90e6b24 reorg
2024-12-08 13:04:18 -06:00

9 lines
218 B
Nix

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