Files
jsl-home/git.nix
John Lancaster 57d59a9dea options
2025-06-30 22:45:04 -05:00

21 lines
549 B
Nix

{ config, lib, ... }:
{
programs.git = lib.mkMerge [
{
enable = true;
extraConfig = {
credential.helper = "store --file ~/.git-credentials";
init.defaultBranch = "main";
push.autoSetupRemote = true;
};
}
(lib.mkIf (config.profile == "personal") {
userName = "John Lancaster";
userEmail = "32917998+jsl12@users.noreply.github.com";
})
(lib.mkIf (config.profile == "work") {
userName = "John Lancaster";
userEmail = "john.lancaster@crowncastle.com";
})
];
}