nix-config/programs/git.nix

12 lines
132 B
Nix

{ ... }:
{
programs.git = {
enable = true;
config = [
{
init.defaultBranch = "main";
}
];
};
}