From c121eae7a1cf83f5cedf4c3463164d5614de113c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Tue, 29 Aug 2023 08:52:27 +0200 Subject: [PATCH] feat(git): auto setup remote on push --- modules/programs/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/programs/git.nix b/modules/programs/git.nix index c3995dc..6216899 100644 --- a/modules/programs/git.nix +++ b/modules/programs/git.nix @@ -53,6 +53,7 @@ in init.defaultBranch = "main"; merge.conflictstyle = "zdiff3"; diff.external = getExe pkgs.difftastic; + push.autoSetupRemote = true; }; signing = mkIf cfg.signing { key = "0x970C6E89EB0547A9";