Home manager: Remove unnecessary git config

This commit is contained in:
J. Fernando Sánchez
2026-02-05 10:44:04 +01:00
parent d0a86c9dc5
commit cf50f8800b

View File

@@ -1,13 +1,4 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
home.packages = with pkgs; [ ]; home.packages = with pkgs; [ ];
programs.git = {
enable = true;
userName = "J. Fernando Sánchez";
userEmail = "balkian@gmail.com";
extraConfig = {
init.defaultBranch = "main";
};
};
} }