blob: 9707f44ca7b7ccaec99e7ce72715345f4513c9f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
config,
lib,
...
}:
with lib; let
cfg = config.local;
in {
config = {
programs.git = {
enable = true;
userName = cfg.gecos;
userEmail = cfg.email;
};
};
}
|