git: remove extraSettings
This commit is contained in:
@@ -1,12 +1,11 @@
|
|||||||
{
|
{
|
||||||
wrappers,
|
wrappers,
|
||||||
pkgs,
|
pkgs,
|
||||||
extraSettings ? { },
|
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
git = wrappers.wrapperModules.git.apply {
|
git = wrappers.wrapperModules.git.apply {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
settings = pkgs.lib.recursiveUpdate {
|
settings = {
|
||||||
alias = {
|
alias = {
|
||||||
co = "checkout";
|
co = "checkout";
|
||||||
br = "branch";
|
br = "branch";
|
||||||
@@ -24,7 +23,7 @@ let
|
|||||||
rebase.autoStash = true;
|
rebase.autoStash = true;
|
||||||
merge.autoStash = true;
|
merge.autoStash = true;
|
||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
} extraSettings;
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
git.wrapper
|
git.wrapper
|
||||||
|
|||||||
Reference in New Issue
Block a user