1
Fork 0
satellite/home/adrielus/features/cli/git.nix

27 lines
470 B
Nix
Raw Normal View History

2023-01-10 02:38:06 +01:00
{ pkgs, ... }: {
programs.git = {
enable = true;
package = pkgs.gitFull;
aliases = {
graph = "log --decorate --oneline --graph";
};
userName = "Matei Adriel";
userEmail = "rafaeladriel11@gmail.com";
extraConfig = {
github.user = "Mateiadrielrafael";
hub.protocol = "ssh";
core.editor = "nvim";
rebase.autoStash = true;
};
};
home.packages = with pkgs; [
# Two github clis
gh
hub
];
}