flake/home/applications/git/default.nix

17 lines
334 B
Nix
Raw Normal View History

2024-01-15 04:18:06 +00:00
{
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;
};
};
2024-02-05 08:41:20 +00:00
programs.gh.enable = true;
2023-11-29 10:18:56 +00:00
}