26 lines
452 B
Nix
Executable file
26 lines
452 B
Nix
Executable file
{ ... }:
|
|
{
|
|
programs.git= {
|
|
enable = true;
|
|
userEmail = "cjriddz@protonmail.com";
|
|
userName = "iofq";
|
|
delta = {
|
|
enable = true;
|
|
options = {
|
|
side-by-side = true;
|
|
line-numbers = true;
|
|
};
|
|
};
|
|
extraConfig = {
|
|
core.editor = "nvim";
|
|
};
|
|
aliases = {
|
|
a = "add . -p";
|
|
s = "status";
|
|
f = "fetch";
|
|
d = "diff";
|
|
cm = "commit -m";
|
|
rb = "rebase -i";
|
|
};
|
|
};
|
|
}
|