lab/nix-dendritic-example/modules/git.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;
};
};
}