This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/home/git/default.nix
2024-07-19 02:08:20 -04:00

22 lines
308 B
Nix

{ ... }:
{
programs.git = {
enable = true;
userName = "Wyatt J. Miller";
userEmail = "wyatt@wyattjmiller.com";
ignores = [
".DS_Store"
".direnv"
".idea"
];
extraConfig = {
init.defaultBranch = "master";
# push.autoSetupRemote = true;
};
};
}