nixos-config/home-manager/git.nix

12 lines
206 B
Nix
Raw Normal View History

2024-06-24 21:53:35 +02:00
{ ... }:
{
programs.git = {
enable = true;
userName = "Rachel Lambda Samuelsson";
userEmail = "depsterr@protonmail.com";
extraConfig = {
init.defaultBranch = "master";
};
};
}