12 lines
210 B
Nix
12 lines
210 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
flake.modules.homeManager.base = {
|
|
programs.git = {
|
|
enable = true;
|
|
|
|
userEmail = config.flake.meta.owner.email;
|
|
userName = config.flake.meta.owner.name;
|
|
};
|
|
};
|
|
}
|