From aaa0a5016fbca155401a7464dde58d262879ad6b Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 12 Jan 2024 14:22:59 +0100 Subject: [PATCH] feat: add git-delete-merged-branches Signed-off-by: Harald Hoyer --- modules/home/tools/git/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/home/tools/git/default.nix b/modules/home/tools/git/default.nix index 4392d50..b50044e 100644 --- a/modules/home/tools/git/default.nix +++ b/modules/home/tools/git/default.nix @@ -18,6 +18,9 @@ in }; config = mkIf cfg.enable { + home.packages = with pkgs; [ + git-delete-merged-branches + ]; programs.git = { enable = true; inherit (cfg) userName userEmail;