15 lines
217 B
Nix
15 lines
217 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Vice";
|
|
userEmail = "vice@nixfox.ca";
|
|
};
|
|
|
|
programs.lazygit.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
gnupg
|
|
git-crypt
|
|
];
|
|
}
|