10 lines
151 B
Nix
10 lines
151 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Michael Thomson";
|
|
userEmail = "michael@michaelthomson.dev";
|
|
};
|
|
}
|