dendritic-example/modules/git.nix
2025-07-22 20:55:21 +01:00

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;
};
};
}