mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
11 lines
219 B
Nix
11 lines
219 B
Nix
|
{ config, lib, pkgs, myName, myEmail, ... }:
|
||
|
|
||
|
{
|
||
|
programs.git.enable = true;
|
||
|
programs.git.userName = myName;
|
||
|
programs.git.userEmail = myEmail;
|
||
|
programs.git.extraConfig = {
|
||
|
init.defaultBranch = "main";
|
||
|
};
|
||
|
}
|