fix(nix): add more git settings
This commit is contained in:
parent
1ad021b79c
commit
7634895fe7
1 changed files with 17 additions and 15 deletions
|
@ -364,6 +364,23 @@
|
|||
programs.home-manager.enable = true;
|
||||
programs.mu.enable = true;
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Lucas Sta Maria";
|
||||
userEmail = "lucas@priime.dev";
|
||||
signing = {
|
||||
key = "2EAF5BA156A36810B057BF61F07FB16A826E3B47";
|
||||
signByDefault = true;
|
||||
};
|
||||
extraConfig = {
|
||||
pull.rebase = true;
|
||||
github.user = "priime0";
|
||||
credential.helper = "store";
|
||||
merge.conflictstyle = "zdiff3";
|
||||
diff.algorithm = "histogram";
|
||||
};
|
||||
};
|
||||
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
|
@ -394,21 +411,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Lucas Sta Maria";
|
||||
userEmail = "lucas@priime.dev";
|
||||
signing = {
|
||||
key = "2EAF5BA156A36810B057BF61F07FB16A826E3B47";
|
||||
signByDefault = true;
|
||||
};
|
||||
extraConfig = {
|
||||
pull.rebase = true;
|
||||
github.user = "priime0";
|
||||
credential.helper = "store";
|
||||
};
|
||||
};
|
||||
|
||||
programs.gh = {
|
||||
enable = true;
|
||||
settings.editor = "emacsclient";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue