diff options
| author | triethyl <triethylammonium@pm.me> | 2025-10-20 09:35:38 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-10-20 09:35:38 -0400 |
| commit | 58694cb2de4da398c2109c1881471476c273dc63 (patch) | |
| tree | 0115106fde6eaea2a0069866d8696d5cb72b7930 /home-manager | |
| parent | f67f2053c00ca1800444c9d80f22fb9b6d5b24c7 (diff) | |
features: actually fixed git
Diffstat (limited to 'home-manager')
| -rw-r--r-- | home-manager/features/cli/utils/git.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/home-manager/features/cli/utils/git.nix b/home-manager/features/cli/utils/git.nix index 3f18d10..532fb25 100644 --- a/home-manager/features/cli/utils/git.nix +++ b/home-manager/features/cli/utils/git.nix @@ -9,9 +9,11 @@ in { config = lib.mkIf cfg.enable { programs.git = { enable = true; - user = { - email = "triethylammonium@pm.me"; - name = "triethyl"; + settings = { + user = { + email = "triethylammonium@pm.me"; + name = "triethyl"; + }; }; }; }; |
