dotfiles/modules/cli/git.nix

14 lines
273 B
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
2021-11-11 18:34:54 +01:00
{
home-manager.users.moritz = {
2021-09-09 21:55:28 +02:00
programs.git = {
enable = true;
userName = "MoritzBoehme";
userEmail = "mr.x@moritzboeh.me";
2021-09-29 17:03:48 +02:00
extraConfig = { init.defaultBranch = "main"; };
2021-10-31 19:45:06 +01:00
delta.enable = true;
2021-09-09 21:55:28 +02:00
};
2021-11-11 18:34:54 +01:00
};
}