home manager settings

This commit is contained in:
2026-03-03 11:57:16 +01:00
parent acbb7ed945
commit 78b37aa0b8
4 changed files with 27 additions and 3 deletions

13
modules/base/git/git.nix Normal file
View File

@@ -0,0 +1,13 @@
{ inputs, ... }: {
flake.homeManagerModules.git = { user, fullname, ... }: {
programs.git = {
enable = true;
userName = fullname;
userEmail = "${user}@chrayed.de";
extraConfig = {
init.defaultBranch = "main";
core.editor = "nano";
};
};
};
}