nix-config/modules/hosts/home/leyla/packages/git.nix

16 lines
334 B
Nix

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