flake/home/applications/git/default.nix

24 lines
560 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
programs.git = rec {
2023-11-29 10:18:56 +00:00
enable = true;
package = pkgs.gitFull; # overriding takes forever to compile
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 = {
2024-07-28 15:25:47 +00:00
init.defaultBranch = "master";
2024-07-03 11:14:12 +00:00
pull.rebase = true;
push.autoSetupRemote = true;
credential.helper = "${package}/bin/git-credential-libsecret";
2024-07-03 11:14:12 +00:00
};
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
}