nix-config/configurations/home-manager/leyla/packages/git.nix

13 lines
229 B
Nix

{...}: {
config = {
programs = {
git = {
settings = {
user.name = "Leyla Becker";
user.email = "git@jan-leila.com";
init.defaultBranch = "main";
};
};
};
};
}