forked from Shinonome/omarchy-nix
10 lines
158 B
Nix
10 lines
158 B
Nix
{config, ...}: let
|
|
cfg = config.omarchy;
|
|
in {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = cfg.full_name;
|
|
userEmail = cfg.email_address;
|
|
};
|
|
}
|