Files
omarchy-nix/modules/home-manager/git.nix
T
2025-07-04 12:59:01 -05:00

13 lines
220 B
Nix

{config, ...}: let
cfg = config.omarchy;
in {
programs.git = {
enable = true;
userName = cfg.full_name;
userEmail = cfg.email_address;
extraConfig = {
credential.helper = "store";
};
};
}