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

15 lines
311 B
Nix
Raw Normal View History

2023-11-29 10:18:56 +00: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;
};
};
}