2020-04-08 18:36:58 +02:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
home-manager.users.adrielus = {
|
2020-05-14 18:13:36 +02:00
|
|
|
home.packages = with pkgs;
|
|
|
|
with gitAndTools; [
|
|
|
|
# Render a git repo
|
|
|
|
gource
|
|
|
|
# Store secrets in github repos
|
|
|
|
git-secret
|
2021-11-29 15:00:11 +01:00
|
|
|
git-crypt
|
2020-05-14 18:13:36 +02:00
|
|
|
# Both of these are github clis
|
|
|
|
gh
|
|
|
|
hub
|
|
|
|
];
|
2020-04-08 18:36:58 +02:00
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
userName = "Matei Adriel";
|
|
|
|
userEmail = "rafaeladriel11@gmail.com";
|
2021-07-18 01:58:38 +02:00
|
|
|
extraConfig.core.editor = "nvim";
|
2020-04-08 18:36:58 +02:00
|
|
|
|
|
|
|
aliases = import ./aliases.nix;
|
|
|
|
|
|
|
|
extraConfig = {
|
|
|
|
github.user = "Mateiadrielrafael";
|
|
|
|
hub.protocol = "ssh";
|
|
|
|
|
|
|
|
rebase.autoStash = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|