about summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/git/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/home/git/default.nix b/home/git/default.nix
index 8043b7b..855d2c2 100644
--- a/home/git/default.nix
+++ b/home/git/default.nix
@@ -1,4 +1,4 @@
-{ lib, config, ... }:
+{ lib, config, pkgs, ... }:
 
 let cfg = config.my.home.git;
 in
@@ -53,5 +53,6 @@ in
       ];
     };
     xdg.dataFile."git/commit.template" = { source = ./commit.template; };
+    home.packages = with pkgs; [ tools.git-blame-stats ];
   };
 }