diff options
| author | triethyl <triethylammonium@pm.me> | 2025-10-20 09:13:59 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-10-20 09:13:59 -0400 |
| commit | f67f2053c00ca1800444c9d80f22fb9b6d5b24c7 (patch) | |
| tree | 47bed19920f82af36ae87618a608273c4f80db57 /home-manager | |
| parent | da861158e90b21514195c8a2b6722265da082fb4 (diff) | |
features: updated git config
Diffstat (limited to 'home-manager')
| -rw-r--r-- | home-manager/features/cli/utils/git.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/home-manager/features/cli/utils/git.nix b/home-manager/features/cli/utils/git.nix index b827d7b..3f18d10 100644 --- a/home-manager/features/cli/utils/git.nix +++ b/home-manager/features/cli/utils/git.nix @@ -9,8 +9,10 @@ in { config = lib.mkIf cfg.enable { programs.git = { enable = true; - userEmail = "triethylammonium@pm.me"; - userName = "triethyl"; + user = { + email = "triethylammonium@pm.me"; + name = "triethyl"; + }; }; }; } |
