mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
14 lines
312 B
Nix
14 lines
312 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|