feat: netcat and git automatic gpg signing

This commit is contained in:
Leon Wilzer 2024-11-28 08:36:24 +01:00
parent 42fcb8b08b
commit f6d588f4e0
Signed by: leon
GPG Key ID: 645EFCD19E59ED05

View File

@ -476,6 +476,7 @@ in
jdk # Java development kit jdk # Java development kit
nixfmt-rfc-style # official nix formatter nixfmt-rfc-style # official nix formatter
ripgrep # some nice grep alternative ripgrep # some nice grep alternative
netcat-gnu # networking connection debugging
]; ];
programs = { programs = {
@ -516,10 +517,19 @@ in
p = "push"; p = "push";
cl = "clone"; cl = "clone";
}; };
delta = {
enable = true;
};
extraConfig = { extraConfig = {
push = { push = {
autoSetupRemote = true; autoSetupRemote = true;
}; };
commit = {
gpgsign = true;
};
tag = {
gpgSign = true;
};
}; };
}; };