about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-13 15:17:42 -0400
committerfigsoda <figsoda@pm.me>2021-10-16 22:39:56 -0400
commit471cfaf523dfcd89ce6d91717f2fee47eb29504e (patch)
tree2998730e7a514b59d1b47074c376e0be8cf649be
parenta6bff35d96b893f3b4ba378c7af086901493ae3a (diff)
nixos/git: change config type
-rw-r--r--nixos/modules/programs/git.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/git.nix b/nixos/modules/programs/git.nix
index 6c60daf21f9ff..06ce374b19923 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";