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 = {
enable = true;
userName = "smayzy";
userEmail = "smayzy@smayzy.ovh";
extraConfig = {
core.editor = "vim";
core.autocrlf = "input";
credential.helper = "store";
pull.rebase = "true";
settings = {
core = {
autocrlf = "input";
editor = "vim";
};
credential = {
helper = "store";
};
pull = {
rebase = "true";
};
user = {
email = "smayzy@smayzy.ovh";
name = "smayzy";
};
};
};