diff --git a/packages/git.nix b/packages/git.nix index 4f1145a..af7bda9 100644 --- a/packages/git.nix +++ b/packages/git.nix @@ -1,12 +1,11 @@ { wrappers, pkgs, - extraSettings ? { }, }: let git = wrappers.wrapperModules.git.apply { inherit pkgs; - settings = pkgs.lib.recursiveUpdate { + settings = { alias = { co = "checkout"; br = "branch"; @@ -24,7 +23,7 @@ let rebase.autoStash = true; merge.autoStash = true; push.autoSetupRemote = true; - } extraSettings; + }; }; in git.wrapper