summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/utils
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/features/cli/utils')
-rw-r--r--home-manager/features/cli/utils/git.nix8
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";
+ };
};
};
};