1
Fork 0
satellite/modules/applications/git/default.nix
2020-04-10 14:51:37 +03:00

25 lines
469 B
Nix

{ pkgs, ... }: {
home-manager.users.adrielus = {
home.packages = with pkgs; [
gource
gitAndTools.hub
gitAndTools.git-secret
];
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;
};
};
};
}