From 3dc8bee3cb3a472dcf8d3990a6623327ac75d985 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Fri, 5 Dec 2025 09:38:13 +0530 Subject: feat(cez/specialisation/heater): init --- home/common/modules/git.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'home/common/modules') diff --git a/home/common/modules/git.nix b/home/common/modules/git.nix index 3f8a98e..077ee1d 100644 --- a/home/common/modules/git.nix +++ b/home/common/modules/git.nix @@ -1,15 +1,16 @@ { config, ... }: let - userName = config.global.userdata.nameFq; - userEmail = config.global.userdata.email; + name = config.global.userdata.nameFq; + email = config.global.userdata.email; in { programs.git = { enable = true; - inherit userName; - inherit userEmail; - - extraConfig = { + settings = { + user = { + inherit name; + inherit email; + }; color.ui = "auto"; init.defaultBranch = "master"; }; -- cgit v1.2.3