mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 04:42:17 +00:00
16 lines
No EOL
409 B
Nix
16 lines
No EOL
409 B
Nix
{ lib, ... }: {
|
|
programs.git = {
|
|
enable = lib.mkDefault true;
|
|
delta.enable = true;
|
|
aliases = {
|
|
graph = "log --decorate --oneline --graph";
|
|
fast-forward = "merge --ff-only";
|
|
};
|
|
userEmail = lib.concatStringsSep "" ["john@bo" "wdre.net"];
|
|
userName = lib.mkDefault "John Bowdre";
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
pull.rebase = false;
|
|
};
|
|
};
|
|
} |