All checks were successful
/ check (push) Successful in 51s
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
10 lines
194 B
Nix
10 lines
194 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
flake.modules.homeManager.base.programs.git = {
|
|
settings.user = {
|
|
email = config.flake.meta.owner.email;
|
|
name = config.flake.meta.owner.name;
|
|
};
|
|
};
|
|
}
|