1{lib, ...}:
2with lib; {
3 options.my.git = {
4 enable = mkEnableOption "git configuration sharing";
5
6 name = mkOption {
7 type = types.str;
8 default = "";
9 description = "Git user name for other modules";
10 };
11
12 email = mkOption {
13 type = types.str;
14 default = "";
15 description = "Git user email for other modules";
16 };
17 };
18}