nixos/hosts/gerg-desktop/git.nix
2023-08-23 20:12:29 -04:00

27 lines
500 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";
};
};
_file = ./git.nix;
}