From 650c841ecac4be095608ae2fcff9ef4456a8d738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Thu, 12 Feb 2026 12:29:47 +0100 Subject: [PATCH] Home Gen18 @ 2026-02-12-12:23 by admin-jroeger@T14-OE130-7-ubuntu --- modules/home/jj.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/home/jj.nix b/modules/home/jj.nix index 9c6c07d..8c217a2 100644 --- a/modules/home/jj.nix +++ b/modules/home/jj.nix @@ -24,10 +24,10 @@ in { enable = true; settings = { user = lib.optionalAttrs cfg.followGit { - name = config.programs.git.userName; - email = config.programs.git.userEmail; + name = config.programs.git.settings.user.name; + email = config.programs.git.settings.user.email; }; - ui = lib.optionalAttrs (cfg.followGit && config.programs.git.difftastic.enable) { + ui = lib.optionalAttrs (cfg.followGit && config.programs.difftastic.enable) { diff-formatter = ["${pkgs.difftastic}/bin/difft" "--color=always" "$left" "$right"]; }; };