This commit is contained in:
2025-12-26 11:02:58 +01:00
commit 83841223bb
15 changed files with 922 additions and 0 deletions

21
home/git.nix Normal file
View File

@@ -0,0 +1,21 @@
{ primaryUser, ... }:
{
programs.git = {
enable = true;
userName = "DerGrumpf"; # TODO replace
userEmail = "p.keier@beyerstedt-it.de"; # TODO replace
lfs.enable = true;
ignores = [ "**/.DS_STORE" ];
extraConfig = {
github = {
user = primaryUser;
};
init = {
defaultBranch = "main";
};
};
};
}