From 37f1082010ce0a1f44a2709bc53cd5e64e93b150 Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Wed, 23 Apr 2025 13:27:18 -0400 Subject: [PATCH] Refactor git configuration to use userFullName instead of handle --- home/toph/common/core/git.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/toph/common/core/git.nix b/home/toph/common/core/git.nix index 911c810..d23be7a 100644 --- a/home/toph/common/core/git.nix +++ b/home/toph/common/core/git.nix @@ -7,7 +7,8 @@ ... }: let - handle = config.hostSpec.handle; + # handle = config.hostSpec.handle; + fullName = config.hostSpec.userFullName; email = config.hostSpec.email; in { @@ -15,7 +16,7 @@ in enable = true; package = pkgs.gitAndTools.gitFull; - userName = handle; + userName = fullName; userEmail = email; ignores = [