28 lines
514 B
Nix
28 lines
514 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
home-manager.users.mysaa.programs.git = {
|
|
enable = true;
|
|
userEmail = "mysaa@hadoly.fr";
|
|
userName = "Mysaa Java";
|
|
|
|
signing.key = "880352F5FD83DF24F41413CC4E77725580DA73CE";
|
|
|
|
aliases = {
|
|
l = "log --oneline --graph";
|
|
};
|
|
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
# TODO remove that, as it is a fix of https://github.com/input-output-hk/haskell.nix/issues/2214 but for coq-nix-toolbox
|
|
safe.directory = "*";
|
|
};
|
|
};
|
|
|
|
}
|