mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
fba993c589
* Set nix official formatter for the flake * format the entire project
22 lines
321 B
Nix
22 lines
321 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;
|
|
};
|
|
};
|
|
}
|