From acd584655b8bf06b1e3b56b7082b224fdc58db4e Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Wed, 24 Jul 2024 21:00:20 +0200 Subject: [PATCH] make the defaultBranch in my git module main --- modules/cli/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cli/git.nix b/modules/cli/git.nix index dd77635..d124864 100644 --- a/modules/cli/git.nix +++ b/modules/cli/git.nix @@ -37,7 +37,7 @@ in { }; defaultBranch = mkOption { type = str; - default = "master"; + default = "main"; description = "default git branch"; }; };