Files
panoptes-nix/nixosModules/home-manager/git.nix
John Lancaster 80cc7131e2 a bit of reorg
2025-05-26 23:26:43 -05: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";
};
}