update git settings in hm to match upstream's new syntax
All checks were successful
nixos config pipeline / show-flake (push) Successful in 40s
nixos config pipeline / deploy (push) Successful in 34s

This commit is contained in:
smayzy 2025-11-22 17:20:08 +01:00
parent 5551b13801
commit 9b6de54e34

View File

@ -34,13 +34,21 @@
programs.git = { programs.git = {
enable = true; enable = true;
userName = "smayzy"; settings = {
userEmail = "smayzy@smayzy.ovh"; core = {
extraConfig = { autocrlf = "input";
core.editor = "vim"; editor = "vim";
core.autocrlf = "input"; };
credential.helper = "store"; credential = {
pull.rebase = "true"; helper = "store";
};
pull = {
rebase = "true";
};
user = {
email = "smayzy@smayzy.ovh";
name = "smayzy";
};
}; };
}; };