From d679adc47f07bafed47754a40e9c0c56ff57e03d Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Wed, 26 Nov 2025 20:20:19 +0100 Subject: [PATCH] git: Fix renamed options --- modules/home/programs/git.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/modules/home/programs/git.nix b/modules/home/programs/git.nix index c6f7622..507b5c7 100644 --- a/modules/home/programs/git.nix +++ b/modules/home/programs/git.nix @@ -13,9 +13,13 @@ git = { enable = true; - userName = "SebastianStork"; - userEmail = "sebastian.stork@pm.me"; - extraConfig.init.defaultBranch = "main"; + settings = { + init.defaultBranch = "main"; + user = { + name = "SebastianStork"; + email = "sebastian.stork@pm.me"; + }; + }; signing = { format = "ssh";