From af26a2db8bf12471158647a477bc70558c7c2c6d Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Tue, 4 Nov 2025 22:24:12 -0600 Subject: [PATCH] git fixes --- homeManagerModules/git.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/homeManagerModules/git.nix b/homeManagerModules/git.nix index 38a9e22..5367dfa 100644 --- a/homeManagerModules/git.nix +++ b/homeManagerModules/git.nix @@ -10,12 +10,12 @@ }; } (lib.mkIf (config.profile == "personal") { - user.name = "John Lancaster"; - user.email = "32917998+jsl12@users.noreply.github.com"; + settings.user.name = "John Lancaster"; + settings.user.email = "32917998+jsl12@users.noreply.github.com"; }) (lib.mkIf (config.profile == "work") { - userName = "John Lancaster"; - userEmail = "john.lancaster@crowncastle.com"; + settings.user.name = "John Lancaster"; + settings.user.email = "john.lancaster@crowncastle.com"; }) ]; } \ No newline at end of file