nixos-config/modules/shell/git.nix

14 lines
146 B
Nix
Raw Normal View History

2022-09-17 16:50:50 +02:00
#
# Git
#
{
programs = {
git = {
enable = true;
userName = "Kabbone";
userEmail = "tobias@opel-online.de";
};
};
}