From 172fb9d6dbba94ff522af368fb9a2900ce71c85c Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 26 Nov 2025 01:11:40 +0100 Subject: [PATCH] fixed git aliases. --- modules/home-manager/git.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/git.nix b/modules/home-manager/git.nix index bc53c59..c7e92cb 100644 --- a/modules/home-manager/git.nix +++ b/modules/home-manager/git.nix @@ -30,6 +30,7 @@ config = lib.mkIf config.user.git.enable { programs.delta = { enable = true; + enableGitIntegration=true; options = { side-by-side = true; line-numbers = true; @@ -38,7 +39,7 @@ programs.git = { enable = true; settings = { - aliases = { + alias = { tree = "log-long-line --graph --topo-order --all --simplify-by-decoration"; hist = "log-long-line --graph --date-order --date=short"; graph = "log-long-line --graph --topo-order --all";