From 2aa4273c825af2c4405b706d9ae217d36a91f6af Mon Sep 17 00:00:00 2001 From: tophC7 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 = [