mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-06 02:39:27 -05:00
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;
|
|
};
|
|
}
|