dotfiles/modules/cli/git.nix
2021-11-18 17:50:55 +01:00

13 lines
273 B
Nix

{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
programs.git = {
enable = true;
userName = "MoritzBoehme";
userEmail = "mr.x@moritzboeh.me";
extraConfig = { init.defaultBranch = "main"; };
delta.enable = true;
};
};
}