From 43aa3b16671ba383dbcc38e948470defb0f15f5a Mon Sep 17 00:00:00 2001 From: Wekuz Date: Mon, 29 Dec 2025 22:20:43 +0200 Subject: [PATCH] Use the new Home Manager git config --- hosts/opti/home.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts/opti/home.nix b/hosts/opti/home.nix index 40cfbd5..c43e2a1 100644 --- a/hosts/opti/home.nix +++ b/hosts/opti/home.nix @@ -36,9 +36,13 @@ programs.git = { enable = true; - userName = "Wekuz"; - userEmail = "wekuz@duck.com"; - extraConfig = { init.defaultBranch = "main"; }; + settings = { + user = { + name = "Wekuz"; + email = "wekuz@duck.com"; + }; + init.defaultBranch = "main"; + }; }; programs.zsh = { enable = true; };