blob: b827d7b4d7cd89f90b29b21c54b7a09ad425e072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
config,
lib,
...
}: let
cfg = config.features.cli.utils.git;
in {
options.features.cli.utils.git.enable = lib.mkEnableOption "git";
config = lib.mkIf cfg.enable {
programs.git = {
enable = true;
userEmail = "triethylammonium@pm.me";
userName = "triethyl";
};
};
}
|