forked from jan-leila/nix-config
12 lines
283 B
Nix
12 lines
283 B
Nix
{config, ...}: {
|
|
config = {
|
|
programs = {
|
|
git = {
|
|
enable = config.user.isDesktopUser || config.user.isTerminalUser;
|
|
userName = "Leyla Becker";
|
|
userEmail = "git@jan-leila.com";
|
|
extraConfig.init.defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
}
|