Files
nixos/home/git.nix
T

19 lines
377 B
Nix

{ ... }:
{
programs.git = {
enable = true;
signing.format = "openpgp";
settings = {
user = {
name = "Superredstone";
email = "patrickcanal3@gmail.com";
signingkey = "1333CB9131084239";
};
init.defaultBranch = "main";
pull.rebase = true;
commit.gpgsign = true;
push.autoSetupRemote = true;
};
};
}