nixos-config/modules/home/git.nix

18 lines
450 B
Nix

{ pkgs, ... }:
{
programs.git = {
enable = true;
userName = "Ahwx";
userEmail = "ahwx@ahwx.org";
extraConfig = {
init.defaultBranch = "master";
credential.helper = "store";
alias.stat = "status";
alias.lg = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%Creset' --abbrev-commit";
};
};
home.packages = [ pkgs.gh pkgs.git-lfs ];
}