feat(git): enable recursive submodule update by default

Added `submodule.recurse = true` to the git configuration in NixOS. This change ensures that submodules are automatically updated recursively.
This commit is contained in:
Harald Hoyer 2024-10-16 14:57:30 +02:00
parent 36cd114e72
commit ed649d35e8

View file

@ -55,6 +55,7 @@ in
merge.conflictStyle = "diff3";
diff.colorMoved = "default";
http.sslCAinfo = "/etc/ssl/certs/ca-certificates.crt";
submodule.recurse = true;
};
};
};