From 01efc056e46f95b8ddcbb3680db08e46446a3842 Mon Sep 17 00:00:00 2001 From: veneficium Date: Mon, 10 Nov 2025 19:41:36 +0100 Subject: [PATCH] use new git email and hm options --- modules/home/cliPrograms/git.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/home/cliPrograms/git.nix b/modules/home/cliPrograms/git.nix index 34059f3..92894ea 100644 --- a/modules/home/cliPrograms/git.nix +++ b/modules/home/cliPrograms/git.nix @@ -7,11 +7,13 @@ config = lib.mkIf config.settings.programs.git.enable { programs.git = { enable = true; - userEmail = "85629831+veneficium42@users.noreply.github.com"; - userName = "Veneficium"; - extraConfig = { + settings = { + user = { + email = "veneficium@linuxposting.xyz"; + name = "veneficium"; + }; init.defaultBranch = "main"; - credential.credentialStore = "gpg"; + # credential.credentialStore = "gpg"; }; }; };