Files
omarchy-nix/modules/home-manager/git.nix
T
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00

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;
};
};
}