Files
lxc-bootstrap/git.nix
2025-05-26 18:43:16 +00: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";
};
}