forked from Shinonome/omarchy-nix
13 lines
220 B
Nix
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";
|
|
};
|
|
};
|
|
}
|