From f6d588f4e0e18112a6ca5f5b233faeadb3f8371d Mon Sep 17 00:00:00 2001 From: Leon Wilzer Date: Thu, 28 Nov 2024 08:36:24 +0100 Subject: [PATCH] feat: netcat and git automatic gpg signing --- common.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/common.nix b/common.nix index 8287b75..a145c14 100644 --- a/common.nix +++ b/common.nix @@ -476,6 +476,7 @@ in jdk # Java development kit nixfmt-rfc-style # official nix formatter ripgrep # some nice grep alternative + netcat-gnu # networking connection debugging ]; programs = { @@ -516,10 +517,19 @@ in p = "push"; cl = "clone"; }; + delta = { + enable = true; + }; extraConfig = { push = { autoSetupRemote = true; }; + commit = { + gpgsign = true; + }; + tag = { + gpgSign = true; + }; }; };