From 82afa1d5ef1310a33e7bb363add4549940c675d2 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sat, 14 Sep 2024 22:29:38 +0200 Subject: [PATCH] feat: github settings --- modules/home-manager/git.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/home-manager/git.nix b/modules/home-manager/git.nix index 9c10e02..f37128b 100644 --- a/modules/home-manager/git.nix +++ b/modules/home-manager/git.nix @@ -6,5 +6,9 @@ delta.enable = true; userEmail = "stefan@tague.at"; userName = "s-prechtl"; + extraConfig = { + init.defaultBranch = "master"; + push.autoSetupRemote = true; + }; }; }