This commit is contained in:
2026-02-18 21:23:56 +01:00
commit 11ce3ba32f
41 changed files with 2422 additions and 0 deletions

26
home/git.nix Normal file
View File

@@ -0,0 +1,26 @@
{ pkgs, primaryUser, ... }:
{
programs.git = {
enable = true;
settings = {
user = {
name = "DerGrumpf"; # TODO replace
email = "p.keier@beyerstedt-it.de"; # TODO replace
};
github = {
user = primaryUser;
};
init = {
defaultBranch = "main";
};
};
lfs.enable = true;
ignores = [ "**/.DS_STORE" ];
};
home.packages = with pkgs; [
gh
gitui
];
}