flake/users/guanranwang/home-manager/applications/git/default.nix

15 lines
304 B
Nix
Raw Normal View History

2024-01-15 12:18:06 +08:00
{
2023-11-29 18:18:56 +08:00
programs.git = {
enable = true;
userName = "Guanran Wang";
userEmail = "guanran928@outlook.com";
delta.enable = true;
signing.signByDefault = true;
signing.key = "~/.ssh/id_github_signing";
extraConfig = {
gpg.format = "ssh";
pull.rebase = true;
};
};
}