nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 95bf950007a56cbe1da0acb3b652d21aae717c80
parent 2528949d4bc6c9735d15843304065de1af2f94cd
Author: Peter <peter@minskio.co.uk>
Date:   Sat, 25 Oct 2025 09:32:55 +0100

Use latest HM git options

Diffstat:
Mhome/git.nix | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/home/git.nix b/home/git.nix @@ -3,7 +3,9 @@ { programs.git = { enable = true; - userName = "${fullname}"; - userEmail = "${email}"; + settings = { + user.name = "${fullname}"; + user.email = "${email}"; + }; }; }