dotfiles/modules/cli/git.nix

14 lines
266 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;
};
};
}