diff options
| author | seth <[email protected]> | 2023-07-15 05:23:40 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-15 05:46:58 -0400 |
| commit | 46b2213b0338aaf9eb172b4e28ba087edad0b0c8 (patch) | |
| tree | 0df230abc0eeed23731abb536e504f4551409b1b /users/seth/programs/git.nix | |
| parent | 75e14e155a639e254c52056e478651fde78202db (diff) | |
users/seth: general cleanup
Diffstat (limited to 'users/seth/programs/git.nix')
| -rw-r--r-- | users/seth/programs/git.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/users/seth/programs/git.nix b/users/seth/programs/git.nix index 4ec67b8..2a7d1cc 100644 --- a/users/seth/programs/git.nix +++ b/users/seth/programs/git.nix @@ -1,17 +1,20 @@ _: { programs.git = { enable = true; + extraConfig = { init = {defaultBranch = "main";}; - safe = {directory = "/etc/nixos";}; }; + signing = { key = "D31BD0D494BBEE86"; signByDefault = true; }; + userEmail = "[email protected]"; userName = "seth"; }; + services.gpg-agent.extraConfig = '' pinentry-program /run/current-system/sw/bin/pinentry ''; |
