This commit is contained in:
2026-03-03 21:29:49 +01:00
parent 9987a011e1
commit c5d3714c78
4 changed files with 7 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
{ inputs, ... }: {
flake.homeModules.git-allusers = { ... }: {
programs.git = {
enable = true;
settings.user.name = "Mohamed Chrayed";
settings.user.email = "mohamed@chrayed.de";
settings = {
init.defaultBranch = "main";
core.editor = "nano";
};
};
};
}