nixos-config/modules/home/programs/terminal/git/default.nix

16 lines
219 B
Nix
Raw Normal View History

2025-02-25 03:03:43 -05:00
{ pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
programs.git = {
2024-08-24 22:16:51 -04:00
enable = true;
2024-10-15 02:40:43 -04:00
userName = "Jimbo";
2025-02-25 03:03:43 -05:00
userEmail = "jimbo@nixfox.ca";
2024-08-24 22:16:51 -04:00
};
programs.lazygit.enable = true;
home.packages = with pkgs; [
gnupg
git-crypt
];
2024-08-24 22:16:51 -04:00
}