nix-config/modules/home/git/default.nix
2024-01-12 14:03:05 +01:00

13 lines
261 B
Nix

{ pkgs, ... }: {
programs.git = {
enable = true;
userName = "twoneis";
userEmail = "sanjay29@sapura.de";
extraConfig = {
init.defaultBranch = "main";
push.autoSetupRemote = true;
};
};
home.packages = with pkgs; [ gh ];
}