21 lines
316 B
Nix
21 lines
316 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Anthony Rodriguez";
|
||
|
userEmail = "anthony@nezia.dev";
|
||
|
signing = {
|
||
|
signByDefault = true;
|
||
|
key = "EE3BE97C040A86CE";
|
||
|
};
|
||
|
extraConfig = {
|
||
|
pull.rebase = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
programs.lazygit = {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|