Deephack's Hyperland config based on omarchy-nix from Henry Sipp and in turn of course inspired by Omarchy.
1{ config, ... }:
2let
3 cfg = config.hyperdeepnix;
4in
5{
6 programs.git = {
7 enable = true;
8 userName = cfg.full_name;
9 userEmail = cfg.email_address;
10 extraConfig = {
11 credential.helper = "store";
12 };
13 };
14
15 programs.gh = {
16 enable = true;
17 gitCredentialHelper = {
18 enable = true;
19 };
20 };
21}