mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
14 lines
300 B
Nix
14 lines
300 B
Nix
{ inputs, ... }: {
|
|
flake.homeManagerModules.git = { user, fullname, ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = fullname;
|
|
userEmail = "${user}@chrayed.de";
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
core.editor = "nano";
|
|
};
|
|
};
|
|
};
|
|
}
|