nix/home/programs/git.nix
2024-01-22 15:22:25 +00:00

17 lines
311 B
Nix

{
programs.git = {
enable = true;
aliases = {
graph = "log --oneline --all --graph";
amend = "commit --amend --no-edit";
sdiff = "diff --staged";
t = "tag --annotate";
};
delta = {
enable = true;
};
extraConfig = {
pull.rebase = true;
};
};
}