nixos/hosts/gerg-desktop/git.nix
2023-12-20 22:52:31 -05:00

27 lines
544 B
Nix

_:
{ pkgs, config, ... }:
{
programs.git = {
enable = true;
package = pkgs.gitMinimal;
config = {
user = {
name = "Gerg-L";
email = "GregLeyda@proton.me";
signingkey = "~/.ssh/id_ed25519.pub";
};
init = {
defaultBranch = "master";
};
push = {
autoSetupRemote = true;
};
advice.addIgnoredFile = false;
core.hooksPath = ".githooks";
gpg.format = "ssh";
push.gpgsign = "if-asked";
commit.gpgsign = true;
};
};
#_file
}