{ config, lib, pkgs, ... }: { config = { programs = { git = { enable = true; settings = { init = { defaultBranch = "main"; }; user = { email = "${config.user.email}"; name = "${config.user.userName}"; }; push = { autoSetupRemote = true; }; }; }; }; }; }