flake/home/applications/git/default.nix

20 lines
369 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;
2024-04-02 17:11:21 +00:00
delta.enable = true;
2023-11-29 10:18:56 +00:00
userName = "Guanran Wang";
userEmail = "guanran928@outlook.com";
signing.signByDefault = true;
2024-04-02 17:11:21 +00:00
signing.key = "91F97D9ED12639CF";
2024-07-03 11:14:12 +00:00
extraConfig = {
pull.rebase = true;
push.autoSetupRemote = true;
};
2023-11-29 10:18:56 +00:00
};
2024-02-05 08:41:20 +00:00
programs.gh.enable = true;
2024-03-31 02:03:52 +00:00
programs.gitui.enable = true;
2023-11-29 10:18:56 +00:00
}