1 2 3 4 5 6 7 8 9 10 11 12 13
{ config, lib, ... }: with lib; let cfg = config.local; in { config = { programs.git = { enable = true; userName = cfg.gecos; userEmail = cfg.email; }; }; }