From efa64cd357841b16f4a17054324a8eafac8433ca Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Wed, 22 Oct 2025 11:12:09 +0200 Subject: [PATCH] git: move to new settings --- modules/home/tools/git/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/home/tools/git/default.nix b/modules/home/tools/git/default.nix index 800c204..e4c3f5a 100644 --- a/modules/home/tools/git/default.nix +++ b/modules/home/tools/git/default.nix @@ -82,13 +82,16 @@ in programs.git = { enable = true; - inherit (cfg) userName userEmail; lfs = enabled; signing = { key = cfg.signingKey; inherit (cfg) signByDefault; }; - extraConfig = { + settings = { + user = { + name = cfg.userName; + email = cfg.userEmail; + }; core = { fsmonitor = true; };