From d28465e475266f45d8c69815c64022c4e860cc20 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Mon, 16 May 2022 08:29:32 -0400 Subject: [PATCH] set git defaultbranch config --- modules/shell/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/shell/git.nix b/modules/shell/git.nix index 5cf4235..727ce66 100644 --- a/modules/shell/git.nix +++ b/modules/shell/git.nix @@ -31,6 +31,7 @@ in { pager = { branch = "false"; }; safe = { directory = "/home/${config.user}/dev/personal/dotfiles"; }; pull = { ff = "only"; }; + init = { defaultBranch = "master"; }; }; };