From 2eda7d9c2a293e3dc544278ffe4645b050d56973 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 21 Nov 2025 11:47:03 +0100 Subject: [PATCH] fix: listen to new new nix way of doing things :+1: --- modules/home/git.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/modules/home/git.nix b/modules/home/git.nix index 759f5c6..dc97a85 100644 --- a/modules/home/git.nix +++ b/modules/home/git.nix @@ -1,12 +1,11 @@ -{ pkgs, ... }: +{ pkgs, ... }: { programs.git = { enable = true; - - userName = "Ahwx"; - userEmail = "ahwx@ahwx.org"; - - extraConfig = { + + settings = { + user.name = "Ahwx"; + user.email = "ahwx@ahwx.org"; init.defaultBranch = "master"; credential.helper = "store"; alias.stat = "status"; @@ -14,5 +13,8 @@ }; }; - home.packages = [ pkgs.gh pkgs.git-lfs ]; + home.packages = [ + pkgs.gh + pkgs.git-lfs + ]; }