mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
18 lines
342 B
Nix
18 lines
342 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;
|
|
};
|
|
};
|
|
}
|