1
0

Initial shared NixOS modules

This commit is contained in:
2025-06-23 17:44:56 -07:00
commit 1061e07deb
11 changed files with 464 additions and 0 deletions

21
home/default/git.nix Normal file
View File

@@ -0,0 +1,21 @@
{ ... }:
{
programs.git = {
enable = true;
lfs.enable = true;
extraConfig = {
pull.ff = "only";
merge.conflictstyle = "zdiff3";
init.defaultBranch = "main";
diff.algorithm = "histogram";
transfer.fsckobjects = true;
fetch.fsckobjects = true;
receive.fsckObjects = true;
log.date = "iso";
};
};
}