nix/home/programs/git.nix

14 lines
258 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;
};
};
}