mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-06 10:49:25 -05:00
20 lines
319 B
Nix
20 lines
319 B
Nix
{config, ...}: let
|
|
cfg = config.omarchy;
|
|
in {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = cfg.full_name;
|
|
userEmail = cfg.email_address;
|
|
extraConfig = {
|
|
credential.helper = "store";
|
|
};
|
|
};
|
|
|
|
programs.gh = {
|
|
enable = true;
|
|
gitCredentialHelper = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|