From 471cfaf523dfcd89ce6d91717f2fee47eb29504e Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Oct 2021 15:17:42 -0400 Subject: [PATCH] nixos/git: change config type --- nixos/modules/programs/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/git.nix b/nixos/modules/programs/git.nix index 6c60daf21f9..06ce374b199 100644 --- a/nixos/modules/programs/git.nix +++ b/nixos/modules/programs/git.nix @@ -20,7 +20,7 @@ in }; config = mkOption { - type = types.attrs; + type = with types; attrsOf (attrsOf anything); default = { }; example = { init.defaultBranch = "main";