From 29c9a8dd4159b46610fd91a9bc60e9597f690e9c Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Tue, 4 Jun 2024 10:26:35 +0200 Subject: [PATCH] feat(git): set push.autoSetupRemote to true --- users/gandalf/modules/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/users/gandalf/modules/git.nix b/users/gandalf/modules/git.nix index 8dc6f24..115a8bd 100644 --- a/users/gandalf/modules/git.nix +++ b/users/gandalf/modules/git.nix @@ -12,6 +12,7 @@ init = { defaultBranch = "main"; }; core.editor = "nvim"; pull.rebase = false; + push.autoSetupRemote = true; }; }; }