mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 22:30:32 +01:00
18 lines
229 B
Nix
18 lines
229 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "xqtc";
|
|
userEmail = "xqtc@tutanota.com";
|
|
extraConfig = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
}
|