From b44d206b76f3d1b20b9432c5c415b845ac712747 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Sun, 29 Sep 2024 23:13:13 +0200 Subject: [PATCH] other/git.nix: add userName and userEmail --- modules/other/git.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/other/git.nix b/modules/other/git.nix index 4778c33..2c7c748 100644 --- a/modules/other/git.nix +++ b/modules/other/git.nix @@ -8,6 +8,9 @@ in { home-manager.users.${username} = { home.packages = with pkgs; [gnupg]; programs.git = { + enable = true; + userName = "Charlie Root"; + userEmail = "charlie@charlieroot.dev"; signing = { key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPiRe9OH/VtWFWyy5QbAVcN7CLxr4zUtRCwmxD6aeN6"; signByDefault = true;