Init Config

This commit is contained in:
DerGrumpf
2026-04-03 23:37:52 +02:00
parent a8ec840d21
commit 62d3c12930
111 changed files with 5652 additions and 1 deletions

22
home/git.nix Normal file
View File

@@ -0,0 +1,22 @@
{ primaryUser, pkgs, ... }: {
home.packages = with pkgs; [ gh gnupg ];
programs = {
git = {
enable = true;
settings = {
github = { user = primaryUser; };
init = { defaultBranch = "main"; };
user = {
name = "DerGrumpf"; # TODO replace
email = "phil.keier@hotmail.com"; # TODO replace
};
};
lfs.enable = true;
ignores = [ "**/.DS_STORE" "result" ];
};
lazygit = { enable = true; };
};
}