1
Fork 0
satellite/modules/applications/git/default.nix

21 lines
424 B
Nix
Raw Normal View History

2020-04-08 18:36:58 +02:00
{ pkgs, ... }: {
home-manager.users.adrielus = {
2020-04-09 10:59:55 +02:00
home.packages = with pkgs; [ gource gitAndTools.hub ];
2020-04-08 18:36:58 +02:00
programs.git = {
enable = true;
userName = "Matei Adriel";
userEmail = "rafaeladriel11@gmail.com";
aliases = import ./aliases.nix;
extraConfig = {
github.user = "Mateiadrielrafael";
hub.protocol = "ssh";
rebase.autoStash = true;
};
};
};
}