From b81936bc34027e1ed82111f8603f2a0675d24b4d Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Wed, 12 Feb 2025 11:31:09 -0500 Subject: [PATCH] setup default branch name --- modules/users/crow/configs/git.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/users/crow/configs/git.nix b/modules/users/crow/configs/git.nix index 3b8b5d0..61cfbaa 100644 --- a/modules/users/crow/configs/git.nix +++ b/modules/users/crow/configs/git.nix @@ -3,5 +3,10 @@ enable = true; userName = "TheWanderingCrow"; userEmail = "contact@wanderingcrow.net"; + extraConfig = { + init = { + defaultBranch = "main"; + }; + }; }; }